Skip to content

Commit 568da0c

Browse files
stupid github forcing changes
1 parent 8a45dfa commit 568da0c

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ jobs:
9393
fi
9494
9595
- name: Upload build Artifact wheel
96-
uses: actions/upload-artifact@v3.2.1
96+
uses: actions/upload-artifact@v4
9797
with:
98-
name: wheel
98+
name: wheel-mac-${{ matrix.raylib-platform }}-${{ matrix.python-version }}
9999
path: dist/*
100100

101101
# build-mac-universal:
@@ -256,9 +256,9 @@ jobs:
256256
257257
258258
- name: Upload build Artifact wheel
259-
uses: actions/upload-artifact@v3.2.1
259+
uses: actions/upload-artifact@v4
260260
with:
261-
name: wheel
261+
name: wheel-linux-${{ matrix.raylib-platform }}-${{ matrix.python-version }}
262262
path: dist/*
263263

264264

@@ -345,9 +345,9 @@ jobs:
345345
fi
346346
347347
- name: Upload build Artifact wheel
348-
uses: actions/upload-artifact@v3.2.1
348+
uses: actions/upload-artifact@v4
349349
with:
350-
name: wheel
350+
name: wheel-windows-${{ matrix.raylib-platform }}-${{ matrix.python-version }}
351351
path: dist/*
352352

353353
source-distro:
@@ -392,9 +392,9 @@ jobs:
392392
python setup.py sdist
393393
394394
- name: Upload build Artifact wheel
395-
uses: actions/upload-artifact@v3.2.1
395+
uses: actions/upload-artifact@v4
396396
with:
397-
name: wheel
397+
name: wheel-source
398398
path: dist/*
399399

400400
dynamic-distro:
@@ -424,7 +424,19 @@ jobs:
424424
python setup.py sdist
425425
426426
- name: Upload build Artifact wheel
427-
uses: actions/upload-artifact@v3.2.1
427+
uses: actions/upload-artifact@v4
428428
with:
429-
name: wheel
429+
name: wheel-dynamic
430430
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

Comments
 (0)