Skip to content

Commit

Permalink
ci: allow workflow dispatch to trigger release
Browse files Browse the repository at this point in the history
  • Loading branch information
offbyone committed Aug 7, 2022
1 parent d3b5a81 commit c950886
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
needs:
- pure-python-wheel-and-sdist
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
if: |
(github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')) ||
(github.event_name == 'workflow_dispatch' && startsWith(github.event.ref, 'refs/tags'))
steps:
- uses: actions/download-artifact@v2
Expand Down

0 comments on commit c950886

Please sign in to comment.