Skip to content

Commit 73ccd1b

Browse files
committed
Use different artifacts for each job
1 parent 687a7b4 commit 73ccd1b

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/build-macos.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ jobs:
181181

182182
- uses: actions/upload-artifact@v4
183183
with:
184-
name: pygame-wheels-macos
184+
name: pygame-wheels-macos-${{ matrix.name }}
185185
path: ./wheelhouse/*.whl
186+
compression-level: 0 # wheels are already zip files, no need for more compression
186187

.github/workflows/build-manylinux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ jobs:
124124
- name: Upload dist
125125
uses: actions/upload-artifact@v4
126126
with:
127-
name: pygame-wheels-manylinux
127+
name: pygame-wheels-manylinux-${{ matrix.arch }}
128128
path: ./wheelhouse/*.whl
129+
compression-level: 0 # wheels are already zip files, no need for more compression
129130

.github/workflows/build-ubuntu-sdist.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,5 @@ jobs:
9292
with:
9393
name: pygame-wheels-sdist
9494
path: dist/*.tar.gz
95+
compression-level: 0 # already compressed, no need for more compression
9596

.github/workflows/build-windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,5 +163,6 @@ jobs:
163163
164164
- uses: actions/upload-artifact@v4
165165
with:
166-
name: pygame-wheels-windows
166+
name: pygame-wheels-windows-${{ matrix.name }}
167167
path: ./wheelhouse/*.whl
168+
compression-level: 0 # wheels are already zip files, no need for more compression

0 commit comments

Comments
 (0)