Skip to content

Commit

Permalink
Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Feb 16, 2024
1 parent c022860 commit ad01ede
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_appstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_notarized.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit ad01ede

Please sign in to comment.