Skip to content

Commit

Permalink
deploy workflows: fix syntax error in step
Browse files Browse the repository at this point in the history
  • Loading branch information
digorgonzola committed Jan 23, 2024
1 parent 60401f3 commit 9ab6577
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ jobs:
- name: Get Currently Running Task Definition
id: get-current-task-definition
run: |
aws ecs describe-task-definition
--task-definition ${{ vars.FAMILY }}
aws ecs describe-task-definition \
--task-definition ${{ vars.FAMILY }} \
--query taskDefinition > task-definition.json
- name: Update Image Tag
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ jobs:
- name: Get Currently Running Task Definition
id: get-current-task-definition
run: |
aws ecs describe-task-definition
--task-definition ${{ vars.FAMILY }}
aws ecs describe-task-definition \
--task-definition ${{ vars.FAMILY }} \
--query taskDefinition > task-definition.json
- name: Update Image Tag
Expand Down

0 comments on commit 9ab6577

Please sign in to comment.