Skip to content

Commit a090669

Browse files
authored
Configure workflow to only build and upload wheel packages (#526)
* Configure workflow to only build and upload wheel packages
1 parent 938bb1d commit a090669

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,20 @@ jobs:
3737
pip install --upgrade pip build twine
3838
pip install .
3939
40-
- name: build sdist
40+
- name: build wheel
4141
run: |
42-
python -m build --sdist --wheel -o wheelhouse
42+
python -m build --wheel -o wheelhouse
4343
44-
- name: List and check sdist
44+
- name: List and check wheel
4545
run: |
4646
ls -lh wheelhouse/
4747
twine check wheelhouse/*
4848
49-
- name: Upload sdist
49+
- name: Upload wheel
5050
uses: actions/upload-artifact@v4
5151
with:
5252
name: wheels
53-
path: ./wheelhouse/*.tar.gz
53+
path: ./wheelhouse/*.whl
5454

5555
upload_to_pypi:
5656
name: Upload to PyPI

0 commit comments

Comments
 (0)