Skip to content

Commit 7cef26e

Browse files
authored
Merge pull request #198 from fabinsch/fix-upload-wheels-ubuntu
ci/linux-wheels: fix naming for artifacts
2 parents 76f92fd + 9d6f886 commit 7cef26e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release-linux.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,16 @@ jobs:
2121
- run: python -m pip install -U pip
2222
- run: python -m pip install cibuildwheel
2323
- run: touch setup.py
24-
- run: python -m cibuildwheel --output-dir wh
24+
- run: python -m cibuildwheel --output-dir dist
2525
env:
2626
CIBW_BUILD: cp37-*manylinux*_x86_64 cp38-*manylinux*_x86_64 cp39-*manylinux*_x86_64 cp310-*manylinux*_x86_64 cp311-*manylinux*_x86_64
2727
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
2828
CIBW_REPAIR_WHEEL_COMMAND: ""
2929

3030
- uses: actions/upload-artifact@v3
3131
with:
32-
path: wh
32+
name: dist
33+
path: dist
3334

3435
release:
3536
needs: "build-wheel"

0 commit comments

Comments
 (0)