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 11c3461 commit a7f6dfcCopy full SHA for a7f6dfc
.github/workflows/python-package.yml
@@ -47,10 +47,8 @@ jobs:
47
deploy:
48
runs-on: ubuntu-latest
49
needs: build
50
- steps:
51
- - name: Publish package
52
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
53
- uses: actions/checkout@v2
+ steps:
+ - uses: actions/checkout@v2
54
- name: Set up Python
55
uses: actions/setup-python@v2
56
with:
@@ -64,5 +62,6 @@ jobs:
64
62
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
65
63
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
66
run: |
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
67
python setup.py sdist bdist_wheel
68
twine upload dist/*
0 commit comments