Skip to content

Commit 0515f61

Browse files
committed
fix: correct secret variable names in deploy workflow
1 parent b7a2fdd commit 0515f61

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/reusable-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
- name: Create app .env file
4848
run: |
49-
echo "${{ secrets.ENV_FILE }}" > .env
49+
echo "${{ secrets.env_file }}" > .env
5050
echo "VITE_BUILD_DATE=$(date +'%Y-%m-%d')" >> .env
5151
echo "VITE_BUILD_TIME=$(date +'%H:%M:%S%z')" >> .env
5252
echo "VITE_BUILD_TS=$(date +'%Y-%m-%dT%H:%M:%S%z')" >> .env
@@ -73,7 +73,7 @@ jobs:
7373
- name: Create infrastructure .env file
7474
working-directory: ./infrastructure
7575
run: |
76-
echo "${{ secrets.CDK_ENV_DEV }}" > .env
76+
echo "${{ secrets.cdk_env_file }}" > .env
7777
echo "✅ Infrastructure .env file created"
7878
7979
- name: Build infrastructure

0 commit comments

Comments
 (0)