Update ecs-deploy.yaml #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# GitHub recommends pinning actions to a commit SHA. | |
# To get a newer version, you will need to update the SHA. | |
# You can also reference a tag or branch, but the action may change without warning. | |
name: Deploy to Amazon ECS | |
on: | |
workflow_run: | |
workflows: [build image] | |
types: | |
- completed | |
push: | |
branches: | |
- main | |
env: | |
AWS_REGION: us-west-2 # set this to your preferred AWS region, e.g. us-west-1 | |
ECS_SERVICE: MY_ECS_SERVICE # set this to your Amazon ECS service name | |
ECS_CLUSTER: MY_ECS_CLUSTER # set this to your Amazon ECS cluster name | |
ECS_TASK_DEFINITION: MY_ECS_TASK_DEFINITION # path to your Amazon ECS task definition file, e.g. .aws/task-definition.json | |
CONTAINER_NAME: MY_CONTAINER_NAME # name of the container in the containerDefinitions section of your task definition | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@main | |
with: | |
role-to-assume: arn:aws:iam::1234567890:role/example-role | |
role-session-name: githubaction-aatf | |
aws-region: ${{ env.AWS_REGION }} | |
- name: Fill in the new image ID in the Amazon ECS task definition | |
id: task-def | |
uses: aws-actions/amazon-ecs-render-task-definition@master | |
with: | |
task-definition: ${{ env.ECS_TASK_DEFINITION }} | |
container-name: ${{ env.CONTAINER_NAME }} | |
image: ${{ steps.build-image.outputs.image }} | |
- name: Deploy Amazon ECS task definition | |
uses: aws-actions/amazon-ecs-deploy-task-definition@master | |
with: | |
task-definition: ${{ steps.task-def.outputs.task-definition }} | |
service: ${{ env.ECS_SERVICE }} | |
cluster: ${{ env.ECS_CLUSTER }} | |
wait-for-service-stability: true |