Skip to content

Commit

Permalink
fix container name in deploy api workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alecananian committed May 24, 2024
1 parent 00ccca1 commit 26538eb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deploy-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ on:
permissions:
id-token: write
contents: read

jobs:
deploy:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -41,7 +40,7 @@ jobs:
uses: aws-actions/amazon-ecs-render-task-definition@v1
with:
task-definition: ./apps/api/.aws/task-definition-${{ vars.ENVIRONMENT }}.json
container-name: development-identity
container-name: ${{ vars.ENVIRONMENT }}-identity
image: ${{ steps.build-image.outputs.image }}
environment-variables: |
AWS_REGION=${{ vars.AWS_REGION }}
Expand All @@ -53,4 +52,4 @@ jobs:
task-definition: ${{ steps.task-def.outputs.task-definition }}
service: ${{ vars.ECS_SERVICE }}
cluster: ${{ vars.ECS_CLUSTER }}
wait-for-service-stability: true
wait-for-service-stability: true

0 comments on commit 26538eb

Please sign in to comment.