Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/deploy-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down