mirror of
https://github.com/apple/pkl.git
synced 2026-01-11 22:30:54 +01:00
Fix deploy jobs (#1319)
Specify `merge-multiple` to prevent new directories from being created when downloading artifacts.
This commit is contained in:
1
.github/jobs/DeployJob.pkl
vendored
1
.github/jobs/DeployJob.pkl
vendored
@@ -18,6 +18,7 @@ steps {
|
||||
new Artifact.Download {
|
||||
with {
|
||||
pattern = "executable-**"
|
||||
`merge-multiple` = true
|
||||
}
|
||||
}
|
||||
new Workflow.Step {
|
||||
|
||||
1
.github/jobs/GithubRelease.pkl
vendored
1
.github/jobs/GithubRelease.pkl
vendored
@@ -15,6 +15,7 @@ fixed job {
|
||||
new Artifact.Download {
|
||||
with {
|
||||
pattern = "executable-**"
|
||||
`merge-multiple` = true
|
||||
}
|
||||
}
|
||||
new {
|
||||
|
||||
1
.github/workflows/main.yml
generated
vendored
1
.github/workflows/main.yml
generated
vendored
@@ -682,6 +682,7 @@ jobs:
|
||||
- uses: actions/download-artifact@v6
|
||||
with:
|
||||
pattern: executable-**
|
||||
merge-multiple: true
|
||||
- env:
|
||||
ORG_GRADLE_PROJECT_signingKeyId: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGKEYID }}
|
||||
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGKEY }}
|
||||
|
||||
2
.github/workflows/release.yml
generated
vendored
2
.github/workflows/release.yml
generated
vendored
@@ -682,6 +682,7 @@ jobs:
|
||||
- uses: actions/download-artifact@v6
|
||||
with:
|
||||
pattern: executable-**
|
||||
merge-multiple: true
|
||||
- env:
|
||||
ORG_GRADLE_PROJECT_signingKeyId: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGKEYID }}
|
||||
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGKEY }}
|
||||
@@ -711,6 +712,7 @@ jobs:
|
||||
- uses: actions/download-artifact@v6
|
||||
with:
|
||||
pattern: executable-**
|
||||
merge-multiple: true
|
||||
- name: Publish release on GitHub
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
|
||||
Reference in New Issue
Block a user