We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03b56e0 commit f69e097Copy full SHA for f69e097
1 file changed
.github/workflows/deploy-application.yml
@@ -203,7 +203,7 @@ jobs:
203
echo "$ecs_variables"
204
cluster_name=$(echo "$ecs_variables" | jq -r '.cluster_name')
205
service_name=$(echo "$ecs_variables" | jq -r '.good_job.service_name')
206
- task_definition=$(echo "$ecs_variables" | jq -r '.good_job.task_definition')
+ task_definition=$(echo "$ecs_variables" | jq -r '.good_job.task_definition.arn')
207
DEPLOYMENT_ID=$(aws ecs update-service --cluster $cluster_name --service $service_name \
208
--task-definition $task_definition --force-new-deployment \
209
--query 'service.deployments[?rolloutState==`IN_PROGRESS`].[id][0]' --output text)
0 commit comments