Skip to content

Commit

Permalink
sign all the publications, workaround for signing
Browse files Browse the repository at this point in the history
  • Loading branch information
morisil committed Sep 30, 2024
1 parent 8bbdfa4 commit 031ff3d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,14 @@ publishing {

if (isReleaseBuild) {

// workaround for KMP/gradle signing issue
// https://github.com/gradle/gradle/issues/26091
tasks {
withType<PublishToMavenRepository> {
dependsOn(withType<Sign>())
}
}

signing {
useInMemoryPgpKeys(
signingKey,
Expand Down

0 comments on commit 031ff3d

Please sign in to comment.