From ad01ede66eb9113fe103ad94e17616d496ec680b Mon Sep 17 00:00:00 2001 From: Dominik Kapusta Date: Fri, 16 Feb 2024 17:03:40 +0100 Subject: [PATCH] Fix syntax --- .github/workflows/build_appstore.yml | 2 +- .github/workflows/build_notarized.yml | 2 +- .github/workflows/create_variants.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_appstore.yml b/.github/workflows/build_appstore.yml index c58b49715c..cea819d0e3 100644 --- a/.github/workflows/build_appstore.yml +++ b/.github/workflows/build_appstore.yml @@ -150,7 +150,7 @@ jobs: - name: Send Mattermost message env: - if: ${{ success() || failure() }} # Don't execute when cancelled + if: success() || failure() # Don't execute when cancelled WORKFLOW_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} DESTINATION: ${{ env.destination }} run: | diff --git a/.github/workflows/build_notarized.yml b/.github/workflows/build_notarized.yml index 837c6e2035..962cf709e5 100644 --- a/.github/workflows/build_notarized.yml +++ b/.github/workflows/build_notarized.yml @@ -338,7 +338,7 @@ jobs: steps: - name: Send Mattermost message env: - if: ${{ success() || failure() }} # Don't execute when cancelled + if: success() || failure() # Don't execute when cancelled ASANA_TASK_URL: ${{ github.event.inputs.asana-task-url || inputs.asana-task-url }} GH_TOKEN: ${{ github.token }} RELEASE_TYPE: ${{ github.event.inputs.release-type || inputs.release-type }} diff --git a/.github/workflows/create_variants.yml b/.github/workflows/create_variants.yml index 7c7424c991..d8675e5075 100644 --- a/.github/workflows/create_variants.yml +++ b/.github/workflows/create_variants.yml @@ -153,7 +153,7 @@ jobs: steps: - name: Send Mattermost message env: - if: ${{ success() || failure() }} # Don't execute when cancelled + if: success() || failure() # Don't execute when cancelled GH_TOKEN: ${{ github.token }} WORKFLOW_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} run: |