Skip to content

Commit

Permalink
Add explicit signing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan3d committed Mar 21, 2024
1 parent 4bf7c89 commit fea91f5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,10 @@ extensions.configure(NexusPublishExtension::class) {
}
}
}

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

0 comments on commit fea91f5

Please sign in to comment.