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 b1584f9 commit 39d10f7Copy full SHA for 39d10f7
.github/workflows/pypi.yml
@@ -78,15 +78,16 @@ jobs:
78
79
upload_pypi:
80
name: Upload to PyPI on release
81
- needs: [build]
+ needs: [build_wheels, make_sdist]
82
runs-on: ubuntu-latest
83
if: github.event_name == 'release' && github.event.action == 'published'
84
steps:
85
- - uses: actions/download-artifact@v3
86
- with:
87
- name: artifact
88
- path: dist
89
- - uses: pypa/gh-action-pypi-publish@v1.6.4
90
91
- user: __token__
92
- password: ${{ secrets.pypi_secret }}
+ - uses: actions/download-artifact@v3
+ with:
+ name: artifact
+ path: dist
+
+ - uses: pypa/gh-action-pypi-publish@v1.5.0
+ user: __token__
93
+ password: ${{ secrets.pypi_password }}
0 commit comments