chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:14 -08:00
parent b6a776e5d7
commit 25c96e210a
316 changed files with 29779 additions and 677 deletions

View File

@@ -9,7 +9,7 @@ on:
pull_request:
branches: [main]
schedule:
- cron: '0 0 * * 1' # weekly Monday
- cron: '0 0 * * 1' # weekly Monday
jobs:
analyze:
@@ -37,4 +37,4 @@ jobs:
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"
category: '/language:${{ matrix.language }}'

View File

@@ -1,7 +1,6 @@
# Build Snap companion site (pathPrefix /snap). Optional: set repository variable
# SNAP_VERIFY_BASE_URL (e.g. https://explorer.d-bis.org) to run verify-snap-site-vmid5000.sh after build.
# Build Snap companion site (pathPrefix /snap). Uploads artifact for deploy to your host.
# Optional: set secret GATSBY_SNAP_API_BASE_URL for production API in build.
name: Deploy Snap Site
name: Build Snap Site
on:
push:
@@ -9,8 +8,6 @@ on:
paths:
- 'packages/site/**'
- 'packages/snap/**'
- 'scripts/deploy-snap-site-to-vmid5000.sh'
- 'scripts/verify-snap-site-vmid5000.sh'
- '.github/workflows/deploy-snap-site.yml'
workflow_dispatch:
@@ -18,8 +15,8 @@ env:
GATSBY_PATH_PREFIX: /snap
jobs:
build-and-verify:
name: Build site and verify
build:
name: Build site
runs-on: ubuntu-latest
steps:
- name: Checkout
@@ -43,7 +40,3 @@ jobs:
name: snap-site-${{ github.sha }}
path: packages/site/public/
retention-days: 7
- name: Verify deployed Snap site (smoke)
if: ${{ vars.SNAP_VERIFY_BASE_URL != '' && vars.SNAP_VERIFY_BASE_URL != null }}
run: ./scripts/verify-snap-site-vmid5000.sh "${{ vars.SNAP_VERIFY_BASE_URL }}"