Skip to content

Commit

Permalink
Further 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 2a09a4a commit 02ee76d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_dmg_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

name: Tag public release

if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.release-type != 'internal' }}
if: github.event_name == 'workflow_dispatch' && github.event.inputs.release-type != 'internal'

uses: ./.github/workflows/tag_release.yml
with:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
with:
name: tag
path: .github

- name: Set tag variable
run: |
if [[ "${{ github.event_name }}" == 'workflow_call' ]]; then
Expand Down

0 comments on commit 02ee76d

Please sign in to comment.