Skip to content

Commit

Permalink
Fix interpolation in workflow
Browse files Browse the repository at this point in the history
Signed-off-by: eternaltyro <230743+eternaltyro@users.noreply.github.com>
  • Loading branch information
eternaltyro committed May 16, 2024
1 parent 031666d commit 394ee2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ecs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
packages: write

outputs:
imageid: steps.build-push-image.imageid
imageid: ${{ steps.build-push-image.imageid }}

steps:
- uses: docker/setup-qemu-action@v3
Expand Down Expand Up @@ -86,8 +86,8 @@ jobs:
with:
task-definition: task-definition.json
container-name: ${{ env.CONTAINER_NAME }}
image: ${{ env.IMAGE_NAME }}:fastapi
# image: ${{ needs.build-push-image.outputs.imageid }} # WHY NOT WORKS?
# image: ${{ env.IMAGE_NAME }}:fastapi
image: ${{ needs.build-push-image.outputs.imageid }} # WHY NOT WORKS?

- name: Deploy task definition
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
Expand Down

0 comments on commit 394ee2b

Please sign in to comment.