We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96283ab commit d4568ceCopy full SHA for d4568ce
.github/workflows/test-deploy-publish.yml
@@ -7,9 +7,6 @@ on:
7
paths-ignore:
8
- 'terraform/**'
9
10
-env:
11
- ENV_NAME: ${{ startsWith(github.ref, 'refs/tags/') && 'prod' || 'dev' }}
12
-
13
concurrency:
14
group: ${{ github.workflow }}-${{ github.ref }}
15
cancel-in-progress: false
@@ -57,7 +54,7 @@ jobs:
57
54
needs: [ 'tests', 'lint' ]
58
55
if: github.ref_name == 'main' || startsWith(github.ref, 'refs/tags/')
59
56
environment:
60
- name: ${{ env.ENV_NAME }}
+ name: ${{ startsWith(github.ref, 'refs/tags/') && 'prod' || 'dev' }}
61
runs-on: ubuntu-latest
62
63
group: deploy-${{ github.ref }}-${{ matrix.region }}
0 commit comments