Skip to content

Commit 98dfa13

Browse files
committed
apply pattern when downloading artifacts
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
1 parent 2e1579f commit 98dfa13

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1157,13 +1157,17 @@ jobs:
11571157
path: repository
11581158
persist-credentials: false
11591159

1160+
- name: Download Version
1161+
uses: actions/download-artifact@v4
1162+
with:
1163+
path: artifacts
1164+
pattern: version
1165+
11601166
- name: Download artifacts
11611167
uses: actions/download-artifact@v4
11621168
with:
1163-
# NOTE: This downloads all build artifacts, including the toolchains and host tools for
1164-
# the irrelevant hosts, because the download-artifact action does not support
1165-
# specifying wildcards in the artifact name.
11661169
path: artifacts
1170+
pattern: "*_${{ matrix.host.name }}*"
11671171

11681172
- name: Create distribution bundle
11691173
run: |

0 commit comments

Comments
 (0)