Skip to content

Commit

Permalink
more debug
Browse files Browse the repository at this point in the history
  • Loading branch information
12rcu committed Jul 21, 2024
1 parent 37ebc60 commit 4aab52e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,18 @@ task("debug_release") {
}
}

task("create_output_dir") {
layout.buildDirectory.dir("jreleaser").get().asFile.let {
if(!it.isDirectory) {
it.mkdirs()
}
}
}

tasks["jreleaserConfig"].dependsOn("create_output_dir")
tasks["publish"].dependsOn("create_output_dir")
tasks["jreleaserFullRelease"].dependsOn("create_output_dir")

publishing {
publications {
register("release", MavenPublication::class) {
Expand Down

0 comments on commit 4aab52e

Please sign in to comment.