Skip to content

Commit

Permalink
fix: action workflow_dispatch event name
Browse files Browse the repository at this point in the history
  • Loading branch information
mustofa-id committed Jan 10, 2024
1 parent 36e4804 commit 2a473f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
# only run when pr merged & prevents from running on forks
if: (github.event.pull_request.merged == true || github.event.name == 'workflow_dispatch') && github.repository == 'ssecd/ihs'
if: (github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch') && github.repository == 'ssecd/ihs'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
Expand Down

0 comments on commit 2a473f0

Please sign in to comment.