Skip to content

Commit

Permalink
create jreleaser dir in build dir when realising if not existing
Browse files Browse the repository at this point in the history
  • Loading branch information
12rcu committed Jul 21, 2024
1 parent 106f29a commit f563296
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,16 @@ repositories {
mavenCentral()
}

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

tasks["jreleaserFullRelease"].dependsOn("create_jreleaser_dir")

jreleaser {
release {
github {
Expand Down

0 comments on commit f563296

Please sign in to comment.