We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3efdf9f commit f8f87fdCopy full SHA for f8f87fd
.github/workflows/main.yml
@@ -56,11 +56,12 @@ jobs:
56
57
deploy:
58
59
+ if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
60
+
61
runs-on: ubuntu-latest
62
63
needs: [build, linting]
64
-
65
steps:
66
- uses: actions/checkout@v1
67
- name: Set up Python
@@ -75,7 +76,6 @@ jobs:
75
76
run: |
77
python setup.py sdist bdist_wheel
78
- name: Publish package to PyPI
- if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
79
uses: pypa/gh-action-pypi-publish@master
80
with:
81
user: __token__
0 commit comments