Skip to content

Commit

Permalink
Merge pull request #39 from icerockdev/develop
Browse files Browse the repository at this point in the history
fix signing issue
  • Loading branch information
Alex009 authored May 27, 2024
2 parents a673eba + 23b3b91 commit 33b4011
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ allprojects {
}
}
}

val signingTasks = tasks.withType<Sign>()
tasks.withType<AbstractPublishToMaven>().configureEach {
dependsOn(signingTasks)
}
}

tasks.register("clean", Delete::class).configure {
Expand Down

0 comments on commit 33b4011

Please sign in to comment.