We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33acdc9 commit fe82035Copy full SHA for fe82035
.github/workflows/python-package.yml
@@ -43,7 +43,7 @@ jobs:
43
run: |
44
pytest
45
- name: Build and publish
46
- if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release' && startsWith(github.event.release.tag_name, 'v')
+ if: (github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')) || (github.event_name == 'release' && startsWith(github.event.release.tag_name, 'v'))
47
env:
48
TWINE_USERNAME: __token__
49
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
0 commit comments