Skip to content

Commit 0aadecf

Browse files
committed
add explicit signing dependency to publish
1 parent 464bb7b commit 0aadecf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,11 @@ tasks {
356356
getByName("build").dependsOn(packForXcode)
357357
}
358358

359+
val signingTasks = tasks.withType<Sign>()
360+
tasks.withType<AbstractPublishToMaven>().configureEach {
361+
dependsOn(signingTasks)
362+
}
363+
359364

360365
fun MavenPublication.setupPom(publicationName: String) {
361366
artifactId = artifactId.replace("-web", "")

0 commit comments

Comments
 (0)