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 1816419 commit 9a0946cCopy full SHA for 9a0946c
.github/workflows/build.yaml
@@ -36,15 +36,11 @@ jobs:
36
- name: Set up Docker Buildx
37
uses: docker/setup-buildx-action@v3
38
39
- - name: Sets env vars for releases
40
- env:
41
- ENV: ${{ vars.ENV }}
+ # see tdei_uw.env for why
+ - name: Override ENV_NAME_PARAM for prod deployments
+ if: github.ref_name == 'prod'
42
run: |
43
- if [[ $ENV == 'prod' ]]; then
44
- echo "ENV_NAME_PARAM=" >> "$GITHUB_ENV"
45
- else
46
- echo "ENV_NAME_PARAM=-$ENV" >> "$GITHUB_ENV"
47
- fi
+ echo "ENV_NAME_PARAM=" >> "$GITHUB_ENV"
48
49
- name: Build and push
50
0 commit comments