Skip to content

Commit 3e797d6

Browse files
committed
CI: fix artifact download pattern for multi-platform builds
Update bootstrap-test job to use pattern matching for bin artifacts since they are now named bin-{os} due to the multi-platform matrix. This fixes the artifact download that was looking for a single 'bin' artifact which no longer exists after the CI generalization.
1 parent a198027 commit 3e797d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,8 @@ jobs:
500500
- name: Download binary
501501
uses: actions/download-artifact@v4
502502
with:
503-
name: bin
503+
pattern: bin-*
504+
merge-multiple: true
504505

505506
- name: Download test
506507
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)