Skip to content

Commit 88357d8

Browse files
author
Matevz Morato
committed
Use unique names for artifacts
1 parent e721436 commit 88357d8

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
- name: Archive wheel artifacts
168168
uses: actions/upload-artifact@v4
169169
with:
170-
name: audited-wheels-${{ github.run_id }}
170+
name: audited-wheels-${{ matrix.rpi-os }}
171171
path: wheelhouse/audited/
172172
- name: Deploy wheels to artifactory (if not a release)
173173
if: startsWith(github.ref, 'refs/tags/v') != true
@@ -225,7 +225,7 @@ jobs:
225225
- name: Archive wheel artifacts
226226
uses: actions/upload-artifact@v4
227227
with:
228-
name: audited-wheels-${{ github.run_id }}
228+
name: audited-wheels-windows-${{ matrix.python-version }}-${{ matrix.python-architecture }}
229229
path: wheelhouse/audited/
230230
- name: Deploy wheels to artifactory (if not a release)
231231
if: startsWith(github.ref, 'refs/tags/v') != true
@@ -286,7 +286,7 @@ jobs:
286286
- name: Archive wheel artifacts
287287
uses: actions/upload-artifact@v4
288288
with:
289-
name: audited-wheels-${{ github.run_id }}
289+
name: audited-wheels-macos-${{ matrix.python-version }}-${{ matrix.os }}
290290
path: wheelhouse/audited/
291291
- name: Deploy wheels to artifactory (if not a release)
292292
if: startsWith(github.ref, 'refs/tags/v') != true
@@ -350,7 +350,7 @@ jobs:
350350
- name: Archive wheel artifacts
351351
uses: actions/upload-artifact@v4
352352
with:
353-
name: audited-wheels-${{ github.run_id }}
353+
name: audited-wheels-linux-x86_64
354354
path: wheelhouse/audited/
355355
- name: Deploy wheels to artifactory (if not a release)
356356
if: startsWith(github.ref, 'refs/tags/v') != true
@@ -407,7 +407,7 @@ jobs:
407407
- name: Archive wheel artifacts
408408
uses: actions/upload-artifact@v4
409409
with:
410-
name: audited-wheels-${{ github.run_id }}
410+
name: audited-wheels-linux-arm64
411411
path: wheelhouse/audited/
412412
- name: Deploy wheels to artifactory (if not a release)
413413
if: startsWith(github.ref, 'refs/tags/v') != true
@@ -463,7 +463,8 @@ jobs:
463463
submodules: 'recursive'
464464
- uses: actions/download-artifact@v4
465465
with:
466-
name: audited-wheels-${{ github.run_id }}
466+
pattern: audited-wheels*
467+
merge-multiple: true
467468
path: wheelhouse/audited/
468469
- name: List files
469470
run: ls -lah

0 commit comments

Comments
 (0)