We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ff1fdb commit 166bab3Copy full SHA for 166bab3
1 file changed
.github/workflows/wheels.yml
@@ -106,12 +106,13 @@ jobs:
106
body_path: "${{ runner.temp }}/release_notes.md"
107
draft: false
108
prerelease: ${{ env.IS_PRERELEASE }}
109
- - name: Build and publish
+ - name: Build sdist
110
run: |
111
if [ "$IS_PRERELEASE" == true ]; then
112
echo "DEBUG: This is a pre-release"
113
else
114
echo "DEBUG: This is a final release"
115
fi
116
- python setup.py sdist
117
- twine upload dist/*.whl dist/*.tar.gz
+ pipx run build --sdist
+ - name: Publish package distributions to PyPI
118
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments