Skip to content

Commit 458c2f4

Browse files
Fix releasing wheels for all platforms
An after-effect of PR #163 means that artifacts now have unique names per job. We have to ensure we download all of them to release all wheels.
1 parent acbb1a6 commit 458c2f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/code.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,9 @@ jobs:
149149
steps:
150150
- uses: actions/download-artifact@v4
151151
with:
152-
name: dist
152+
pattern: dist*
153153
path: dist
154+
merge-multiple: true
154155

155156
- name: Github Release
156157
# We pin to the SHA, not the tag, for security reasons.

0 commit comments

Comments
 (0)