From 6b944eef7e7d43f08c926a608b51aa5a89b089d6 Mon Sep 17 00:00:00 2001 From: seaerchin Date: Thu, 28 Mar 2024 18:32:27 +0800 Subject: [PATCH] fix(ci): update image names --- .aws/deploy/support-task-definition.staging.json | 4 ++-- .github/workflows/aws_deploy.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.aws/deploy/support-task-definition.staging.json b/.aws/deploy/support-task-definition.staging.json index b7da49a83..714fcc380 100644 --- a/.aws/deploy/support-task-definition.staging.json +++ b/.aws/deploy/support-task-definition.staging.json @@ -4,8 +4,8 @@ "name": "support", "portMappings": [ { - "containerPort": 8081, - "hostPort": 8081, + "containerPort": 8082, + "hostPort": 8082, "protocol": "tcp" } ], diff --git a/.github/workflows/aws_deploy.yml b/.github/workflows/aws_deploy.yml index e38e91e8b..73190161a 100644 --- a/.github/workflows/aws_deploy.yml +++ b/.github/workflows/aws_deploy.yml @@ -137,7 +137,7 @@ jobs: with: task-definition: ${{ inputs.task-definition-path }} container-name: ${{ inputs.ecs-container-name }} - image: ${{ steps.login-ecr.outputs.registry }}/${{ inputs.ecr-repository }}/${{inputs.ecs-web-service-name}}:${{inputs.ecs-web-service-name}}-${{ github.sha }} + image: ${{ steps.login-ecr.outputs.registry }}/${{ inputs.ecr-repository }}:${{inputs.ecs-web-service-name}}-${{ github.sha }} - name: Deploy Amazon ECS task definition uses: aws-actions/amazon-ecs-deploy-task-definition@v1