Skip to content

Commit 41e628d

Browse files
committed
fix CI release
1 parent 3e0d899 commit 41e628d

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
python-version: '3.10'
8181

8282
- name: Install cibuildwheel
83-
run: python -m pip install cibuildwheel==2.11.1
83+
run: python -m pip install cibuildwheel==2.22.0
8484

8585
- name: Install dependencies
8686
run: |
@@ -94,8 +94,8 @@ jobs:
9494

9595
- uses: actions/upload-artifact@v4
9696
with:
97-
path: ./wheelhouse
98-
overwrite: true
97+
name: vtzero-wheels-${{ matrix.os }}-${{ strategy.job-index }}
98+
path: ./wheelhouse/*.whl
9999

100100
build_sdist:
101101
needs: [tests]
@@ -120,17 +120,18 @@ jobs:
120120

121121
- uses: actions/upload-artifact@v4
122122
with:
123+
name: vtzero-sdist
123124
path: dist/*.tar.gz
124-
overwrite: true
125125

126126
upload_pypi:
127127
needs: [build_wheels, build_sdist]
128128
runs-on: ubuntu-latest
129129
steps:
130130
- uses: actions/download-artifact@v4
131131
with:
132-
name: artifact
132+
pattern: vtzero-*
133133
path: dist
134+
merge-multiple: true
134135

135136
- uses: pypa/gh-action-pypi-publish@release/v1
136137
with:

0 commit comments

Comments
 (0)