From 458c2f4c10bd2e8393018055868339cd48903451 Mon Sep 17 00:00:00 2001 From: AlexWells Date: Tue, 22 Apr 2025 09:48:28 +0100 Subject: [PATCH] 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. --- .github/workflows/code.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index f6090128..540ee4da 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -149,8 +149,9 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: dist + pattern: dist* path: dist + merge-multiple: true - name: Github Release # We pin to the SHA, not the tag, for security reasons.