Skip to content

Commit 3d4d588

Browse files
BCDA-9715: Adjust deploy all workflow for ECR consolidation work (#1305)
## 🎫 Ticket https://jira.cms.gov/browse/BCDA-9715 ## 🛠 Changes Correct ECR names ## ℹ️ Context Adjust deploy all workflow for ECR consolidation work <!-- If any of the following security implications apply, this PR must not be merged without Stephen Walter's approval. Explain in this section and add @SJWalter11 as a reviewer. - Adds a new software dependency or dependencies. - Modifies or invalidates one or more of our security controls. - Stores or transmits data that was not stored or transmitted before. - Requires additional review of security implications for other reasons. --> ## 🧪 Validation Workflow run
1 parent a95c109 commit 3d4d588

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/deploy-all.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,16 +116,16 @@ jobs:
116116
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/delegatedadmin/developer/${{ vars.AWS_ROLE_TO_ASSUME }}
117117
- name: Verify API image exists
118118
run: |
119-
echo "Verifying that tag ${{ inputs.version }} exists in the bcda-${{ env.RELEASE_ENV }}-api repo"
120-
aws ecr describe-images --repository-name bcda-${{ env.RELEASE_ENV }}-api --image-ids imageTag=${{ inputs.version }}
119+
echo "Verifying that tag ${{ inputs.version }} exists in the bcda-api repo"
120+
aws ecr describe-images --repository-name bcda-api --image-ids imageTag=${{ inputs.version }}
121121
- name: Verify SSAS image exists
122122
run: |
123-
echo "Verifying that tag ${{ inputs.ssas_version }} exists in the bcda-${{ env.RELEASE_ENV }}-ssas repo"
124-
aws ecr describe-images --repository-name bcda-${{ env.RELEASE_ENV }}-ssas --image-ids imageTag=${{ inputs.ssas_version }}
123+
echo "Verifying that tag ${{ inputs.ssas_version }} exists in the bcda-ssas repo"
124+
aws ecr describe-images --repository-name bcda-ssas --image-ids imageTag=${{ inputs.ssas_version }}
125125
- name: Verify Worker image exists
126126
run: |
127-
echo "Verifying that tag ${{ inputs.version }} exists in the bcda-${{ env.RELEASE_ENV }}-worker repo"
128-
aws ecr describe-images --repository-name bcda-${{ env.RELEASE_ENV }}-worker --image-ids imageTag=${{ inputs.version }}
127+
echo "Verifying that tag ${{ inputs.version }} exists in the bcda-worker repo"
128+
aws ecr describe-images --repository-name bcda-worker --image-ids imageTag=${{ inputs.version }}
129129
130130
migrate_db:
131131
needs: [verify_images_exist]

0 commit comments

Comments
 (0)