db to user_id
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 1m1s

This commit is contained in:
2025-11-24 13:35:05 -08:00
parent 3c567ea104
commit 94a2eda576
8 changed files with 124 additions and 50 deletions

View File

@@ -107,7 +107,12 @@ jobs:
- name: Build React Application
# We set the environment variable directly in the command line for this step.
# This maps the Gitea secret to the environment variable the application expects.
run: VITE_API_BASE_URL=/api VITE_API_KEY=${{ secrets.VITE_GOOGLE_GENAI_API_KEY }} npm run build
# We also generate and inject the application version and a direct link to the commit.
run: |
GITEA_SERVER_URL="https://gitea.projectium.com" # Your Gitea instance URL
VITE_APP_VERSION="$(date +'%Y%m%d-%H%M'):$(git rev-parse --short HEAD)" \
VITE_APP_COMMIT_URL="$GITEA_SERVER_URL/${{ gitea.repository }}/commit/${{ gitea.sha }}" \
VITE_API_BASE_URL=/api VITE_API_KEY=${{ secrets.VITE_GOOGLE_GENAI_API_KEY }} npm run build
- name: Deploy Application to Server
run: |