Skip to content

Commit

Permalink
deploy workflows: correct image reference
Browse files Browse the repository at this point in the history
  • Loading branch information
digorgonzola committed Jan 23, 2024
1 parent 4d8fab3 commit ab76d4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
with:
task-definition: task-definition.json
container-name: app
image: ${{ vars.ECR_REGISTRY }}/${{ vars.ECR_REPOSITORY }}:${{ needs.build_push.outputs.image_digest }}
image: ${{ vars.ECR_REGISTRY }}/${{ vars.ECR_REPOSITORY }}@${{ needs.build_push.outputs.image_digest }}

- name: Display Rendered Template
id: display-rendered-template
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
with:
task-definition: task-definition.json
container-name: app
image: ${{ vars.ECR_REGISTRY }}/${{ vars.ECR_REPOSITORY }}:${{ needs.build_push.outputs.image_digest }}
image: ${{ vars.ECR_REGISTRY }}/${{ vars.ECR_REPOSITORY }}@${{ needs.build_push.outputs.image_digest }}

- name: Display Rendered Template
id: display-rendered-template
Expand Down

0 comments on commit ab76d4a

Please sign in to comment.