Skip to content

Commit

Permalink
Update deploy_to_s3.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrkupton authored May 7, 2024
1 parent 5932f87 commit 378f63d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_to_s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ jobs:
# checkout the cob repository that has been pushed to.
- name: Set Variables
run: |
if [[ "{{ github.ref_name }}" == "develop" ]]; then
if [[ "${{ github.ref_name }}" == "develop" ]]; then
echo "BUCKET_NAME=patterns-stg.boston.gov" >> "${GITHUB_ENV}"
elif [[ "{{ github.ref_name }}" == "production" ]]; then
elif [[ "${{ github.ref_name }}" == "production" ]]; then
echo "BUCKET_NAME=patterns.boston.gov" >> "${GITHUB_ENV}"
else
echo "BUCKET_NAME=patterns-uat.boston.gov" >> "${GITHUB_ENV}"
Expand Down

0 comments on commit 378f63d

Please sign in to comment.