Skip to content

Commit

Permalink
ci: fix deploy echo GIT_BRANCH command
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Oct 23, 2023
1 parent 1d554b9 commit 403edb8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,12 @@ jobs:
- name: Create .env file
run: |
# Get a8m/envsubst (required for default vals syntax ${VAR:-default})
echo "Downloading envsubst"
curl -L https://github.com/a8m/envsubst/releases/download/v1.2.0/envsubst-`uname -s`-`uname -m` -o envsubst
chmod +x envsubst
./envsubst < .env.example > .env
"GIT_BRANCH=${GIT_BRANCH}" >> .env
echo "GIT_BRANCH=${GIT_BRANCH}" >> .env
- name: Backend smoke test
run: |
Expand Down

0 comments on commit 403edb8

Please sign in to comment.