@@ -73,12 +73,12 @@ jobs:
73
73
uses : actions/upload-artifact@v3
74
74
with :
75
75
name : wheels
76
- path : wheelhouse/st-opencv *.whl
76
+ path : wheelhouse/*.whl
77
77
- name : Saving a wheel accordingly to matrix
78
78
uses : actions/upload-artifact@v3
79
79
with :
80
80
name : wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
81
- path : wheelhouse/st-opencv *.whl
81
+ path : wheelhouse/*.whl
82
82
83
83
Test :
84
84
needs : [Build]
@@ -185,7 +185,7 @@ jobs:
185
185
uses : actions/upload-artifact@v3
186
186
with :
187
187
name : wheels
188
- path : dist/st-opencv *.tar.gz
188
+ path : dist/*.tar.gz
189
189
190
190
Release_rolling :
191
191
if : ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
@@ -203,19 +203,19 @@ jobs:
203
203
- name : Upload wheels for opencv_python_rolling
204
204
run : |
205
205
python -m pip install twine
206
- python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/st-opencv_python_rolling -*
206
+ python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/*_python_rolling-* wheelhouse/*-python-rolling -*
207
207
- name : Upload wheels for opencv_contrib_python_rolling
208
208
run : |
209
209
python -m pip install twine
210
- python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/st-opencv_contrib_python_rolling -*
210
+ python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/*_contrib_python_rolling-* wheelhouse/*-contrib-python-rolling -*
211
211
- name : Upload wheels for opencv_python_headless_rolling
212
212
run : |
213
213
python -m pip install twine
214
- python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/st-opencv_python_headless_rolling -*
214
+ python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/*_python_headless_rolling-* wheelhouse/*-python-headless-rolling -*
215
215
- name : Upload wheels for opencv_contrib_python_headless_rolling
216
216
run : |
217
217
python -m pip install twine
218
- python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/st-opencv_contrib_python_headless_rolling -*
218
+ python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/*_contrib_python_headless_rolling-* wheelhouse/*-contrib-python-headless-rolling -*
219
219
220
220
Pre-release :
221
221
if : github.event_name == 'release' && github.event.release.prerelease
@@ -233,7 +233,7 @@ jobs:
233
233
- name : Upload all wheels
234
234
run : |
235
235
python -m pip install twine
236
- python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/st-opencv -*
236
+ python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/* -*
237
237
238
238
Release :
239
239
if : github.event_name == 'release' && !github.event.release.prerelease
@@ -248,19 +248,19 @@ jobs:
248
248
with :
249
249
name : wheels
250
250
path : wheelhouse/
251
- - name : Upload wheels for opencv_python
251
+ - name : Upload wheels for st- opencv_python
252
252
run : |
253
253
python -m pip install twine
254
- python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/st-opencv_python- * wheelhouse/st-opencv -python-[^h]*
255
- - name : Upload wheels for opencv_contrib_python
254
+ python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/*_python- * wheelhouse/* -python-[^h]*
255
+ - name : Upload wheels for st- opencv_contrib_python
256
256
run : |
257
257
python -m pip install twine
258
- python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/st-opencv_contrib_python- * wheelhouse/st-opencv -contrib-python-[^h]*
259
- - name : Upload wheels for opencv_python_headless
258
+ python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/*_contrib_python- * wheelhouse/* -contrib-python-[^h]*
259
+ - name : Upload wheels for st- opencv_python_headless
260
260
run : |
261
261
python -m pip install twine
262
- python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/st-opencv_python_headless- * wheelhouse/st-opencv -python-headless-*
262
+ python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/*_python_headless- * wheelhouse/* -python-headless-*
263
263
- name : Upload wheels for st-opencv_contrib_python_headless
264
264
run : |
265
265
python -m pip install twine
266
- python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/st-opencv_contrib_python_headless- * st-wheelhouse/opencv -contrib-python-headless-*
266
+ python -m twine upload --repository ${{ secrets.PIPY_REP_URL }} -u ${{ secrets.PYPI_USERNAME }} -p ${{ secrets.PYPI_PASSWORD }} --skip-existing wheelhouse/*_contrib_python_headless- * st-wheelhouse/* -contrib-python-headless-*
0 commit comments