Skip to content

Commit

Permalink
chore: always run release job on workflow_dispatch events
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleClapton committed Feb 28, 2023
1 parent 20ee5e7 commit d8faf74
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 @@ -16,7 +16,7 @@ on:
jobs:
release:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
if: github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success'
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit d8faf74

Please sign in to comment.