Skip to content

Commit da90e4c

Browse files
committed
Fix outputs reference
1 parent 936e344 commit da90e4c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • .github/actions/task-processor-deploy-ecs

.github/actions/task-processor-deploy-ecs/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ runs:
4141
image: ${{ inputs.api_ecr_image_url }}
4242

4343
- name: Deploy Amazon ECS Task Processor task definition
44+
id: deploy-task-processor-task-def
4445
uses: aws-actions/amazon-ecs-deploy-task-definition@v2
4546
with:
4647
cluster: ${{ inputs.aws_ecs_cluster_name }}
@@ -56,7 +57,7 @@ runs:
5657
- name: Verify correct version is running
5758
shell: bash
5859
run: |
59-
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 }}
6061
RUNNING_TASK_DEF=$(aws ecs describe-services \
6162
--cluster ${{ inputs.aws_ecs_cluster_name }} \
6263
--services ${{ inputs.aws_ecs_service_name }} \

0 commit comments

Comments
 (0)