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 938bb1d commit a090669Copy full SHA for a090669
1 file changed
.github/workflows/wheels.yml
@@ -37,20 +37,20 @@ jobs:
37
pip install --upgrade pip build twine
38
pip install .
39
40
- - name: build sdist
+ - name: build wheel
41
run: |
42
- python -m build --sdist --wheel -o wheelhouse
+ python -m build --wheel -o wheelhouse
43
44
- - name: List and check sdist
+ - name: List and check wheel
45
46
ls -lh wheelhouse/
47
twine check wheelhouse/*
48
49
- - name: Upload sdist
+ - name: Upload wheel
50
uses: actions/upload-artifact@v4
51
with:
52
name: wheels
53
- path: ./wheelhouse/*.tar.gz
+ path: ./wheelhouse/*.whl
54
55
upload_to_pypi:
56
name: Upload to PyPI
0 commit comments