Skip to content

Commit

Permalink
Update deploy-match.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chaeri93 authored Aug 2, 2024
1 parent 627033d commit 855d228
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy-match.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ on:
branches: [ "main" ]

env:
AWS_REGION: MY_AWS_REGION # set this to your preferred AWS region, e.g. us-west-1
ECR_REPOSITORY: MY_ECR_REPOSITORY # set this to your Amazon ECR repository name
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 # set this to the path to your Amazon ECS task definition
AWS_REGION: ${{ secrets.MY_AWS_REGION }} # set this to your preferred AWS region, e.g. us-west-1
ECR_REPOSITORY: ${{ secrets.MY_ECR_REPOSITORY }} # set this to your Amazon ECR repository name
ECS_SERVICE: ${{ secrets.MY_ECS_SERVICE }} # set this to your Amazon ECS service name
ECS_CLUSTER: ${{ secrets.MY_ECS_CLUSTER }} # set this to your Amazon ECS cluster name
ECS_TASK_DEFINITION: ${{ secrets.MY_ECS_TASK_DEFINITION }} # set this to the path to your Amazon ECS task definition
# file, e.g. .aws/task-definition.json
CONTAINER_NAME: MY_CONTAINER_NAME # set this to the name of the container in the
CONTAINER_NAME: ${{ secrets.MY_CONTAINER_NAME }} # set this to the name of the container in the
# containerDefinitions section of your task definition

permissions:
Expand Down

0 comments on commit 855d228

Please sign in to comment.