Skip to content

Commit d9ac5d6

Browse files
committed
fix: Download build artifacts by pattern to avoid unrelated artifact issues
1 parent 7c28443 commit d9ac5d6

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/build.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,10 +351,19 @@ jobs:
351351
id: get_version
352352
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
353353

354-
- name: Download all artifacts
354+
- name: Download all build artifacts
355355
uses: actions/download-artifact@v4
356356
with:
357357
path: artifacts
358+
pattern: flapi-*
359+
merge-multiple: false
360+
361+
- name: Download flapii artifacts
362+
uses: actions/download-artifact@v4
363+
with:
364+
path: artifacts
365+
pattern: flapii-*
366+
merge-multiple: false
358367

359368
- name: Prepare release assets
360369
run: |

0 commit comments

Comments
 (0)