From e5035a7b0d0ba37b86a5694b079addbe33be3280 Mon Sep 17 00:00:00 2001 From: Torben Sorensen Date: Mon, 10 Nov 2025 11:14:40 -0800 Subject: [PATCH] post-deploy fixins --- .gitea/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 01feb679..cdf68059 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -66,8 +66,8 @@ jobs: - name: Build React Application env: # Pass the Google GenAI API key to the build process. - # Vite automatically makes env vars prefixed with VITE_ available in the app. - VITE_GOOGLE_GENAI_API_KEY: ${{ secrets.VITE_GOOGLE_GENAI_API_KEY }} + # Vite automatically makes env vars prefixed with VITE_ available in the app. The app expects VITE_API_KEY. + VITE_API_KEY: ${{ secrets.VITE_API_KEY }} run: npm run build # This creates the 'dist' directory with static files. - name: Deploy Frontend via Local Copy