From 55a1868e088d613a043954db24e67badd51dec56 Mon Sep 17 00:00:00 2001 From: Abel Ratanaphan Date: Thu, 22 Aug 2024 09:27:30 -0400 Subject: [PATCH] fix: no force-redeploy --- .github/workflows/aws.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/aws.yml b/.github/workflows/aws.yml index 15ef48f..fb480e8 100644 --- a/.github/workflows/aws.yml +++ b/.github/workflows/aws.yml @@ -64,13 +64,9 @@ jobs: # Update the ECS service and capture output UPDATE_OUTPUT=$(aws ecs update-service \ --cluster ${{ env.ECS_CLUSTER }} \ - --service ${{ env.ECS_SERVICE }} \ - --force-new-deployment) + --service ${{ env.ECS_SERVICE }}) # Wait until the service has stabilized aws ecs wait services-stable \ --cluster ${{ env.ECS_CLUSTER }} \ --services ${{ env.ECS_SERVICE }} - - # Echo the output for debugging purposes - echo "$UPDATE_OUTPUT"