Skip to content

Commit 33b555a

Browse files
authored
Downgrade to the previous artifact upload action (#396)
With the new version, you cannot merge the different runs anymore into a single zip: https://github.com/actions/upload-artifact?tab=readme-ov-file#breaking-changes Which is quite annoying since you have to merge them by hand.
1 parent b99468c commit 33b555a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
if: startsWith(matrix.os, 'ubuntu')
8181
run: ls -lah dist/* && cp dist/* wheelhouse/
8282

83-
- uses: actions/upload-artifact@v4
83+
- uses: actions/upload-artifact@v3
8484
with:
85-
name: "release-${{ matrix.os }}-${{ github.event.inputs.version }}"
85+
name: "release-${{ matrix.os }}"
8686
path: ./wheelhouse/*

0 commit comments

Comments
 (0)