Skip to content

Commit 7583493

Browse files
committed
fix: rename PRODUCTION environment variable to STAGE in deployment workflow
1 parent 384bc63 commit 7583493

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cd.deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
env:
1919
CI: true
20-
PRODUCTION: production
20+
STAGE: production
2121
DEPLOY_VERSION: ${{ github.ref_type == 'tag' && github.ref_name || format('0.0.0-{0}-{1}-{2}', github.ref_name, github.run_number, github.run_attempt) }}
2222

2323
steps:
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ubuntu-latest
6565
env:
6666
CI: true
67-
PRODUCTION: production
67+
STAGE: production
6868
DEPLOY_VERSION: ${{ github.ref_type == 'tag' && github.ref_name || format('0.0.0-{0}-{1}-{2}', github.ref_name, github.run_number, github.run_attempt) }}
6969

7070
steps:

0 commit comments

Comments
 (0)