Skip to content

Commit 5ed772d

Browse files
committed
Missing $
1 parent da90e4c commit 5ed772d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ runs:
6363
--services ${{ inputs.aws_ecs_service_name }} \
6464
--query 'services[0].deployments[?status==`PRIMARY`].taskDefinition' \
6565
--output text)
66-
if [[ "RUNNING_TASK_DEF" == "$EXPECTED_TASK_DEF" && ]]; then
66+
if [[ "$RUNNING_TASK_DEF" == "$EXPECTED_TASK_DEF" && ]]; then
6767
exit 0
6868
else
6969
echo "Task definition mismatch detected"

0 commit comments

Comments
 (0)