My workflow
uses: aws-actions/amazon-ecs-deploy-task-definition@v2
with:
task-definition: ${{ steps.task-def.outputs.task-definition }}
service: ${{ env.ECS_SERVICE }}
cluster: ${{ env.ECS_CLUSTER }}
wait-for-service-stability: true
After upgrading to v2.6.3, I often see that this step remains unfinished for a long time after the AWS ECS deployment has completed. Downgrading to v2.6.2 fixed this behavior.
My workflow
After upgrading to v2.6.3, I often see that this step remains unfinished for a long time after the AWS ECS deployment has completed. Downgrading to v2.6.2 fixed this behavior.