Skip to content

Commit 0b9169e

Browse files
committed
Fix artifact uploads (turns out they aren't merged anymore).
1 parent f4491d4 commit 0b9169e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/github-actions.yml

+3
Original file line numberDiff line numberDiff line change
@@ -1055,6 +1055,9 @@ jobs:
10551055
uses: actions/upload-artifact@v4
10561056
if: matrix.cibw_build
10571057
with:
1058+
name: 'wheel-${{ matrix.cibw_build }}-${{ matrix.cibw_arch }}'
1059+
if-no-files-found: error
1060+
compression-level: 0
10581061
path: wheelhouse/*.whl
10591062
finish:
10601063
needs: test

ci/templates/.github/workflows/github-actions.yml

+3
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ jobs:
120120
uses: actions/upload-artifact@v4
121121
if: matrix.cibw_build
122122
with:
123+
name: '{{ 'wheel-${{ matrix.cibw_build }}-${{ matrix.cibw_arch }}' }}'
124+
if-no-files-found: error
125+
compression-level: 0
123126
path: wheelhouse/*.whl
124127
finish:
125128
needs: test

0 commit comments

Comments
 (0)