From 0515f61a7a1fb04eb2886bc023e42cbdafe04737 Mon Sep 17 00:00:00 2001 From: Matthew Warman Date: Mon, 9 Feb 2026 16:19:27 -0500 Subject: [PATCH] fix: correct secret variable names in deploy workflow --- .github/workflows/reusable-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-deploy.yml b/.github/workflows/reusable-deploy.yml index e824bfa..a6a37ec 100644 --- a/.github/workflows/reusable-deploy.yml +++ b/.github/workflows/reusable-deploy.yml @@ -46,7 +46,7 @@ jobs: - name: Create app .env file run: | - echo "${{ secrets.ENV_FILE }}" > .env + echo "${{ secrets.env_file }}" > .env echo "VITE_BUILD_DATE=$(date +'%Y-%m-%d')" >> .env echo "VITE_BUILD_TIME=$(date +'%H:%M:%S%z')" >> .env echo "VITE_BUILD_TS=$(date +'%Y-%m-%dT%H:%M:%S%z')" >> .env @@ -73,7 +73,7 @@ jobs: - name: Create infrastructure .env file working-directory: ./infrastructure run: | - echo "${{ secrets.CDK_ENV_DEV }}" > .env + echo "${{ secrets.cdk_env_file }}" > .env echo "✅ Infrastructure .env file created" - name: Build infrastructure