Fetch data from separate GitHub Pages instead of bundling

- Add NEXT_PUBLIC_DATA_URL env var pointing to entdb-data Pages
- Refactor env.ts: dataURL, withBase (cleaner naming)
- Remove data download step from build workflow
This commit is contained in:
cc
2026-04-15 17:10:29 +02:00
parent bb72bd3f57
commit 53aeb562b7
8 changed files with 21 additions and 48 deletions
+5 -26
View File
@@ -4,9 +4,6 @@ on:
push:
branches: [main]
repository_dispatch:
types: [data-updated]
workflow_dispatch:
permissions:
@@ -14,6 +11,10 @@ permissions:
pages: write
id-token: write
env:
DATA_REPO_OWNER: ChiChou
DATA_REPO_NAME: entdb-data
jobs:
build:
runs-on: ubuntu-latest
@@ -24,15 +25,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Show dispatch context
if: github.event_name == 'repository_dispatch'
run: |
echo "Triggered by repository_dispatch"
echo "event_type=${{ github.event.action }}"
echo "source_repo=${{ github.event.client_payload.source_repo }}"
echo "source_sha=${{ github.event.client_payload.source_sha }}"
echo "source_ref=${{ github.event.client_payload.source_ref }}"
- name: Setup Node.js
uses: actions/setup-node@v4
with:
@@ -53,20 +45,7 @@ jobs:
run: npm run build
env:
NEXT_PUBLIC_BASE_PATH: ${{ steps.configure-pages.outputs.base_path || '' }}
- name: Download latest data release
env:
GH_TOKEN: ${{ github.token }}
run: |
release_json=$(curl -fsSL \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer $GH_TOKEN" \
https://api.github.com/repos/ChiChou/entdb-data/releases/latest)
data_url=$(echo "$release_json" | jq -er '.assets[] | select(.name == "data.tar.gz") | .browser_download_url')
mkdir -p out/data
curl -fL "$data_url" -o data.tar.gz
tar -xzf data.tar.gz -C out/data
NEXT_PUBLIC_DATA_URL: https://${{ env.DATA_REPO_OWNER }}.github.io/${{ env.DATA_REPO_NAME }}
- name: Upload artifact
if: steps.configure-pages.outcome == 'success'