mirror of
https://github.com/apple/pkl.git
synced 2026-03-23 01:29:20 +01:00
Fix release publishing (#1343)
This commit is contained in:
7
.github/index.pkl
vendored
7
.github/index.pkl
vendored
@@ -184,11 +184,14 @@ release {
|
||||
jobs =
|
||||
(releaseJobs) {
|
||||
["deploy-release"] = (
|
||||
new DeployJob { command = "publishToSonatype closeAndReleaseSonatypeStagingRepository" }
|
||||
new DeployJob {
|
||||
isRelease = true
|
||||
command = "publishToSonatype closeAndReleaseSonatypeStagingRepository"
|
||||
}
|
||||
) {
|
||||
needs = releaseJobs.keys.toListing()
|
||||
}
|
||||
["github-release"] = (new GithubRelease {}) {
|
||||
["github-release"] = new GithubRelease {
|
||||
needs = "deploy-release"
|
||||
}
|
||||
} |> toWorkflowJobs
|
||||
|
||||
Reference in New Issue
Block a user