We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8b1c9b commit a04387aCopy full SHA for a04387a
1 file changed
.github/workflows/build-release.yml
@@ -28,7 +28,8 @@ jobs:
28
publish-to-pypi:
29
name: >-
30
Publish Python 🐍 distribution 📦 to PyPI
31
- if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
+ #if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
32
+ if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
33
runs-on: ubuntu-latest
34
environment:
35
name: pypi
0 commit comments