From 378f63d9fb2b997cd44a024b437fbce36087847d Mon Sep 17 00:00:00 2001 From: David Upton Date: Tue, 7 May 2024 12:02:48 -0400 Subject: [PATCH] Update deploy_to_s3.yml --- .github/workflows/deploy_to_s3.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_to_s3.yml b/.github/workflows/deploy_to_s3.yml index 9681208f..7d753c21 100644 --- a/.github/workflows/deploy_to_s3.yml +++ b/.github/workflows/deploy_to_s3.yml @@ -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}"