Skip to content

Commit

Permalink
Fix github.event_name checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Feb 23, 2024
1 parent 5cd4df9 commit 786d240
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_dmg_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
steps:

- name: Download tag artifact
if: ${{ github.event_name == 'workflow_call' }}
if: github.event_name == 'workflow_call'
uses: actions/download-artifact@v4
with:
name: tag
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ jobs:
github-token: ${{ github.token }}

- name: Store created tag in a file artifact
if: ${{ github.event_name == 'workflow_call' }}
if: github.event_name == 'workflow_call'
run: echo ${{ steps.create-tag.outputs.tag }} > .github/tag

- name: Upload tag artifact
if: ${{ github.event_name == 'workflow_call' }}
if: github.event_name == 'workflow_call'
uses: actions/upload-artifact@v4
with:
name: tag
Expand Down

0 comments on commit 786d240

Please sign in to comment.