File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments