Skip to content

Commit

Permalink
fix signing
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex009 committed Sep 22, 2024
1 parent 2022394 commit 04b409f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ val mokoVersion = libs.versions.mokoGeoVersion.get()
allprojects {
group = "dev.icerock.moko"
version = mokoVersion

// fix Reason: Task ':graphics:publishJsPublicationToOSSRHRepository' uses this output of task ':graphics:signAndroidDebugPublication' without declaring an explicit or implicit dependency. This can lead to incorrect results being produced, depending on what order the tasks are executed.
val signingTasks = tasks.withType<Sign>()
tasks.withType<AbstractPublishToMaven>().configureEach {
dependsOn(signingTasks)
}
}

tasks.register("clean", Delete::class).configure {
Expand Down

0 comments on commit 04b409f

Please sign in to comment.