Skip to content

Commit 21752ab

Browse files
authored
Fix signing (#447)
1 parent 4d6974d commit 21752ab

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

gradle/build-logic/src/main/kotlin/sign.gradle.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,9 @@ signing {
6060
sign(publishing.publications)
6161
}
6262
}
63+
64+
// https://youtrack.jetbrains.com/issue/KT-46466
65+
val signingTasks = tasks.withType<Sign>()
66+
tasks.withType<AbstractPublishToMaven>().configureEach {
67+
dependsOn(signingTasks)
68+
}

0 commit comments

Comments
 (0)