File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -20,10 +20,7 @@ import "pkl:semver"
2020
2121import "@gha/actions/Artifact.pkl"
2222import "@gha/actions/Common.pkl"
23- import "@gha/actions/Setup.pkl"
2423import "@gha/Context.pkl"
25- import "@gha/Workflow.pkl"
26- import "@pkl.impl.ghactions/helpers.pkl"
2724import "@pkl.impl.ghactions/jobs/HawkeyeCheck.pkl"
2825import "@pkl.impl.ghactions/steps/SetupPkl.pkl"
2926
@@ -292,7 +289,8 @@ release = (prb) {
292289 new Common .Checkout {}
293290 new Artifact .Download {
294291 with {
295- name = "\(buildArtifactsName) -*"
292+ pattern = "\(buildArtifactsName) -*"
293+ `merge-multiple` = true
296294 path = "out"
297295 }
298296 }
Original file line number Diff line number Diff line change @@ -347,8 +347,9 @@ jobs:
347347 - uses : actions/checkout@v5
348348 - uses : actions/download-artifact@v6
349349 with :
350- name : pkl-swift-build-artifacts-*
351350 path : out
351+ pattern : pkl-swift-build-artifacts-*
352+ merge-multiple : true
352353 - env :
353354 GH_TOKEN : ${{ github.token }}
354355 GH_REPO : ${{ github.repository }}
You can’t perform that action at this time.
0 commit comments