Skip to content

Commit

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

env:
AWS_REGION: ${{ secrets.MY_AWS_REGION }} # set this to your preferred AWS region, e.g. us-west-1
ECR_REPOSITORY: ${{ secrets.MY_ECR_REPOSITORY_CHAT }} # set this to your Amazon ECR repository name
ECS_SERVICE: ${{ secrets.MY_ECS_SERVICE_CHAT }} # set this to your Amazon ECS service name
ECS_CLUSTER: ${{ secrets.MY_ECS_CLUSTER_CHAT }} # set this to your Amazon ECS cluster name
ECS_TASK_DEFINITION: ${{ secrets.MY_ECS_TASK_DEFINITION_CHAT }} # set this to the path to your Amazon ECS task definition
AWS_REGION: ${{ vars.MY_AWS_REGION }} # set this to your preferred AWS region, e.g. us-west-1
ECR_REPOSITORY: ${{ vars.MY_ECR_REPOSITORY_CHAT }} # set this to your Amazon ECR repository name
ECS_SERVICE: ${{ vars.MY_ECS_SERVICE_CHAT }} # set this to your Amazon ECS service name
ECS_CLUSTER: ${{ vars.MY_ECS_CLUSTER_CHAT }} # set this to your Amazon ECS cluster name
ECS_TASK_DEFINITION: ${{ vars.MY_ECS_TASK_DEFINITION_CHAT }} # set this to the path to your Amazon ECS task definition
# file, e.g. .aws/task-definition.json
CONTAINER_NAME: ${{ secrets.MY_CONTAINER_NAME_CHAT }} # set this to the name of the container in the
CONTAINER_NAME: ${{ vars.MY_CONTAINER_NAME_CHAT }} # set this to the name of the container in the
# containerDefinitions section of your task definition

permissions:
Expand Down

0 comments on commit dd219ed

Please sign in to comment.