We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 936e344 commit da90e4cCopy full SHA for da90e4c
1 file changed
.github/actions/task-processor-deploy-ecs/action.yml
@@ -41,6 +41,7 @@ runs:
41
image: ${{ inputs.api_ecr_image_url }}
42
43
- name: Deploy Amazon ECS Task Processor task definition
44
+ id: deploy-task-processor-task-def
45
uses: aws-actions/amazon-ecs-deploy-task-definition@v2
46
with:
47
cluster: ${{ inputs.aws_ecs_cluster_name }}
@@ -56,7 +57,7 @@ runs:
56
57
- name: Verify correct version is running
58
shell: bash
59
run: |
- EXPECTED_TASK_DEF=${{ steps.task-def-task-processor.outputs.task-definition }}
60
+ EXPECTED_TASK_DEF=${{ steps.deploy-task-processor-task-def.outputs.task-definition-arn }}
61
RUNNING_TASK_DEF=$(aws ecs describe-services \
62
--cluster ${{ inputs.aws_ecs_cluster_name }} \
63
--services ${{ inputs.aws_ecs_service_name }} \
0 commit comments