Skip to content

Commit 410d58d

Browse files
committed
fix pattern
Signed-off-by: Anas Nashif <[email protected]>
1 parent 65e4904 commit 410d58d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1179,14 +1179,23 @@ jobs:
11791179
path: repository
11801180
persist-credentials: false
11811181

1182+
- name: Download Version
1183+
uses: actions/download-artifact@v4
1184+
with:
1185+
# NOTE: This downloads all build artifacts, including the toolchains and host tools for
1186+
# the irrelevant hosts, because the download-artifact action does not support
1187+
# specifying wildcards in the artifact name.
1188+
path: artifacts
1189+
pattern: version
1190+
11821191
- name: Download artifacts
11831192
uses: actions/download-artifact@v4
11841193
with:
11851194
# NOTE: This downloads all build artifacts, including the toolchains and host tools for
11861195
# the irrelevant hosts, because the download-artifact action does not support
11871196
# specifying wildcards in the artifact name.
11881197
path: artifacts
1189-
pattern: toolchain_${{ matrix.host.name }}-*
1198+
pattern: *_${{ matrix.host.name }}_*
11901199

11911200
- name: Create distribution bundle
11921201
run: |

0 commit comments

Comments
 (0)