Skip to content

Commit

Permalink
Fix ios signing publication task 1
Browse files Browse the repository at this point in the history
  • Loading branch information
svok committed Apr 14, 2024
1 parent 7b04a11 commit fdb1d12
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,13 @@ tasks {
}

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

filter { it.name.startsWith("link") }.forEach {
it.name {
mustRunAfter(withType<Sign>())
}
}

publish {
Expand Down

0 comments on commit fdb1d12

Please sign in to comment.