93
93
fi
94
94
95
95
- name : Upload build Artifact wheel
96
- uses : actions/upload-artifact@v3.2.1
96
+ uses : actions/upload-artifact@v4
97
97
with :
98
- name : wheel
98
+ name : wheel-mac-${{ matrix.raylib-platform }}-${{ matrix.python-version }}
99
99
path : dist/*
100
100
101
101
# build-mac-universal:
@@ -256,9 +256,9 @@ jobs:
256
256
257
257
258
258
- name : Upload build Artifact wheel
259
- uses : actions/upload-artifact@v3.2.1
259
+ uses : actions/upload-artifact@v4
260
260
with :
261
- name : wheel
261
+ name : wheel-linux-${{ matrix.raylib-platform }}-${{ matrix.python-version }}
262
262
path : dist/*
263
263
264
264
@@ -345,9 +345,9 @@ jobs:
345
345
fi
346
346
347
347
- name : Upload build Artifact wheel
348
- uses : actions/upload-artifact@v3.2.1
348
+ uses : actions/upload-artifact@v4
349
349
with :
350
- name : wheel
350
+ name : wheel-windows-${{ matrix.raylib-platform }}-${{ matrix.python-version }}
351
351
path : dist/*
352
352
353
353
source-distro :
@@ -392,9 +392,9 @@ jobs:
392
392
python setup.py sdist
393
393
394
394
- name : Upload build Artifact wheel
395
- uses : actions/upload-artifact@v3.2.1
395
+ uses : actions/upload-artifact@v4
396
396
with :
397
- name : wheel
397
+ name : wheel-source
398
398
path : dist/*
399
399
400
400
dynamic-distro :
@@ -424,7 +424,19 @@ jobs:
424
424
python setup.py sdist
425
425
426
426
- name : Upload build Artifact wheel
427
- uses : actions/upload-artifact@v3.2.1
427
+ uses : actions/upload-artifact@v4
428
428
with :
429
- name : wheel
429
+ name : wheel-dynamic
430
430
path : dynamic/dist/*
431
+
432
+ download :
433
+ needs : [build-mac-intel, build-windows, build-linux, source-distro, dynamic-distro]
434
+ runs-on : ubuntu-latest
435
+ steps :
436
+ - name : Download All Artifacts
437
+ uses : actions/download-artifact@v4
438
+ with :
439
+ path : wheel
440
+ pattern : wheel-*
441
+ merge-multiple : true
442
+ - run : ls -R wheel
0 commit comments