Skip to content

Commit

Permalink
HOTFIX Container build tag
Browse files Browse the repository at this point in the history
A recent change to how environment variables are handled required an update to how containers are built. As part of this process a YAML line was copied between files for GHA that contains a reference to an undefined variable. This resovles the issue by using a present value for the tag
  • Loading branch information
mwbenowitz committed May 20, 2021
1 parent 59fce5a commit 0b53379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
IMAGE_TAG: ${{ github.sha }}
AIRTABLE_KEY: ${{ secrets.AIRTABLE_API_KEY }}
run: |
docker build --build-arg airtable_api_key=$AIRTABLE_KEY -t $ECR_REGISTRY/$ECR_REPOSITORY:$BRANCH_NAME .
docker build --build-arg airtable_api_key=$AIRTABLE_KEY -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG .
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG
docker tag $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG $ECR_REGISTRY/$ECR_REPOSITORY:latest
docker push $ECR_REGISTRY/$ECR_REPOSITORY:latest
Expand Down

0 comments on commit 0b53379

Please sign in to comment.