Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
id: deploy-service-only
# This one is different. The single-image case is when not deploying core.
if: inputs.service != 'core'
uses: aws-actions/amazon-ecs-deploy-task-definition@16f052ed696e6e5bf88c208a8e5ba1af7ced3310
uses: aws-actions/amazon-ecs-deploy-task-definition@549b2410fa1d3b40b652eb5ffab962aa788c718e
with:
# it is because of this line that the two steps need different if conditions
task-definition: ${{ steps.task-def-service.outputs.task-definition }}
Expand All @@ -128,7 +128,7 @@ jobs:
- name: Deploy Amazon ECS task definition including migrations
id: deploy-service-and-migrations
if: inputs.service == 'core'
uses: aws-actions/amazon-ecs-deploy-task-definition@16f052ed696e6e5bf88c208a8e5ba1af7ced3310
uses: aws-actions/amazon-ecs-deploy-task-definition@549b2410fa1d3b40b652eb5ffab962aa788c718e
with:
# it is because of this line that the two steps need different if conditions
task-definition: ${{ steps.task-def-migration.outputs.task-definition }}
Expand Down
Loading