We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d0263a commit 3b26893Copy full SHA for 3b26893
1 file changed
.github/workflows/build_wheels.yml
@@ -47,8 +47,8 @@ jobs:
47
needs: [build_wheels, build_sdist]
48
runs-on: ubuntu-latest
49
50
- # upload to PyPI on every tag starting with "v"
51
- if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
+ # upload to PyPI on every release
+ if: github.event_name == 'release' && github.event.action == 'created'
52
steps:
53
- uses: actions/download-artifact@v3
54
with:
0 commit comments