We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39e8bdf commit bbe93daCopy full SHA for bbe93da
1 file changed
.github/workflows/manual-release.yml
@@ -76,10 +76,12 @@ jobs:
76
git push origin HEAD
77
git push origin "v${RELEASE_VERSION}"
78
79
- - name: Build distributions
80
- run: python -m build
+ - name: Build distributions (sdist only)
+ run: python -m build --sdist
81
82
- name: Publish to PyPI
83
uses: pypa/gh-action-pypi-publish@release/v1
84
with:
85
- password: ${{ secrets.PYPI_API_TOKEN }}
+ password: ${{ secrets.PYPI_API_TOKEN }}
86
+ packages-dir: dist
87
+ skip-existing: true
0 commit comments