Skip to content

Commit

Permalink
set task dependencies (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
thebehera authored May 12, 2024
1 parent 79b2e94 commit a995b01
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 @@ -256,3 +256,8 @@ task<Exec>("publishTag") {
commandLine("git", "tag", next)
commandLine("git", "push", "origin", next)
}

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

0 comments on commit a995b01

Please sign in to comment.