Skip to content

Commit eacf80c

Browse files
authored
Fix release deploy pipeline (#90)
1 parent bf494bc commit eacf80c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/index.pkl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@ import "pkl:semver"
2020

2121
import "@gha/actions/Artifact.pkl"
2222
import "@gha/actions/Common.pkl"
23-
import "@gha/actions/Setup.pkl"
2423
import "@gha/Context.pkl"
25-
import "@gha/Workflow.pkl"
26-
import "@pkl.impl.ghactions/helpers.pkl"
2724
import "@pkl.impl.ghactions/jobs/HawkeyeCheck.pkl"
2825
import "@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
}

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)