diff --git a/.github/workflows/deploy-all.yml b/.github/workflows/deploy-all.yml index 8b644ca6c..88cef573d 100644 --- a/.github/workflows/deploy-all.yml +++ b/.github/workflows/deploy-all.yml @@ -116,16 +116,16 @@ jobs: role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/delegatedadmin/developer/${{ vars.AWS_ROLE_TO_ASSUME }} - name: Verify API image exists run: | - echo "Verifying that tag ${{ inputs.version }} exists in the bcda-${{ env.RELEASE_ENV }}-api repo" - aws ecr describe-images --repository-name bcda-${{ env.RELEASE_ENV }}-api --image-ids imageTag=${{ inputs.version }} + echo "Verifying that tag ${{ inputs.version }} exists in the bcda-api repo" + aws ecr describe-images --repository-name bcda-api --image-ids imageTag=${{ inputs.version }} - name: Verify SSAS image exists run: | - echo "Verifying that tag ${{ inputs.ssas_version }} exists in the bcda-${{ env.RELEASE_ENV }}-ssas repo" - aws ecr describe-images --repository-name bcda-${{ env.RELEASE_ENV }}-ssas --image-ids imageTag=${{ inputs.ssas_version }} + echo "Verifying that tag ${{ inputs.ssas_version }} exists in the bcda-ssas repo" + aws ecr describe-images --repository-name bcda-ssas --image-ids imageTag=${{ inputs.ssas_version }} - name: Verify Worker image exists run: | - echo "Verifying that tag ${{ inputs.version }} exists in the bcda-${{ env.RELEASE_ENV }}-worker repo" - aws ecr describe-images --repository-name bcda-${{ env.RELEASE_ENV }}-worker --image-ids imageTag=${{ inputs.version }} + echo "Verifying that tag ${{ inputs.version }} exists in the bcda-worker repo" + aws ecr describe-images --repository-name bcda-worker --image-ids imageTag=${{ inputs.version }} migrate_db: needs: [verify_images_exist]