Skip to content

Commit

Permalink
kick
Browse files Browse the repository at this point in the history
  • Loading branch information
wasade committed May 9, 2023
1 parent e5f8f04 commit ef0d916
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 @@ -71,7 +71,9 @@ jobs:
release:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
# this is not ideal as it doesn't limit to what type of tag
# but it at least seems to work
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')

steps:
- name: Stage artifacts
Expand Down

0 comments on commit ef0d916

Please sign in to comment.