Persist jpkl to the workspace for releases (#314)

This is something that was published to Maven but not as a GitHub release.
 Persist it so that it can go out with a release.
This commit is contained in:
Kushal Pisavadia
2024-03-13 17:00:04 +00:00
committed by GitHub
parent 8dc258ef7d
commit 1e608b2aae
2 changed files with 15 additions and 0 deletions
+7
View File
@@ -32,4 +32,11 @@ steps {
new Config.RunStep {
command = "./gradlew \(self.gradleArgs) \(module.command)"
}
// add jpkl to workspace so it gets published as a GitHub release
new Config.PersistToWorkspaceStep {
root = "."
paths {
"pkl-cli/build/executable/"
}
}
}