From a2523714509f91bb66bd78cb98958e372667ed4c Mon Sep 17 00:00:00 2001 From: Dominik Kapusta Date: Fri, 1 Mar 2024 00:55:40 +0100 Subject: [PATCH] Fix syntax 2 --- .github/workflows/tag_release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tag_release.yml b/.github/workflows/tag_release.yml index 8edc0982c5..02d8d45dec 100644 --- a/.github/workflows/tag_release.yml +++ b/.github/workflows/tag_release.yml @@ -133,7 +133,7 @@ jobs: fi - name: Set up Asana templates - if: failure() || ${{ env.MERGE_OR_DELETE_FAILED == 'true' }} + if: failure() || env.MERGE_OR_DELETE_FAILED == 'true' id: asana-failure-templates run: | if [[ ${{ steps.create-tag.outputs.tag-created }} == "true" ]]; then @@ -156,7 +156,7 @@ jobs: - name: Create Asana task on failure id: create-task-on-failure - if: failure() || ${{ env.MERGE_OR_DELETE_FAILED == 'true' }} + if: failure() || env.MERGE_OR_DELETE_FAILED == 'true' uses: ./.github/actions/asana-create-action-item with: access-token: ${{ secrets.ASANA_ACCESS_TOKEN }} @@ -164,7 +164,7 @@ jobs: template-name: ${{ steps.asana-failure-templates.outputs.task-template }} - name: Report failure - if: failure() || ${{ env.MERGE_OR_DELETE_FAILED == 'true' }} + if: failure() || env.MERGE_OR_DELETE_FAILED == 'true' uses: ./.github/actions/asana-log-message env: ASSIGNEE_ID: ${{ steps.create-task-on-failure.outputs.assignee-id }}