Skip to content

Commit aa48b1c

Browse files
committed
Fixed upload path in twine release.
1 parent 0dd09ec commit aa48b1c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/build_wheels_macos.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,10 @@ jobs:
173173
steps:
174174
- uses: actions/download-artifact@v4
175175
with:
176-
name: wheels
177176
path: wheelhouse/
178177
- name: Upload all wheels
179178
run: |
179+
tree
180180
python -m pip install twine
181181
python -m twine upload --repository testpypi -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/opencv_*
182182
@@ -191,7 +191,6 @@ jobs:
191191
steps:
192192
- uses: actions/download-artifact@v4
193193
with:
194-
name: wheels
195194
path: wheelhouse/
196195
- name: Upload wheels for opencv_python
197196
run: |

.github/workflows/build_wheels_macos_m1.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ jobs:
155155
steps:
156156
- uses: actions/download-artifact@v4
157157
with:
158-
name: wheels
159158
path: wheelhouse/
160159
- name: Upload all wheels
161160
run: |
161+
tree
162162
python -m pip install twine
163163
python -m twine upload --repository testpypi -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/opencv_*
164164
@@ -173,7 +173,6 @@ jobs:
173173
steps:
174174
- uses: actions/download-artifact@v4
175175
with:
176-
name: wheels
177176
path: wheelhouse/
178177
- name: Upload wheels for opencv_python
179178
run: |

.github/workflows/build_wheels_manylinux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ jobs:
243243

244244
- name: Upload all wheels
245245
run: |
246+
tree
246247
python -m pip install twine
247248
python -m twine upload --repository testpypi -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/wheel-*/opencv_* wheelhouse/wheel-*/opencv-*
248249

0 commit comments

Comments
 (0)