Skip to content

Commit

Permalink
Fix ios signing publication task
Browse files Browse the repository at this point in the history
  • Loading branch information
svok committed Apr 12, 2024
1 parent 0736dde commit 7b04a11
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -162,17 +162,18 @@ tasks {
dependsOn(publish)
}

val linkDebugTestIosSimulatorArm64: Task by getting {
dependsOn("signIosSimulatorArm64Publication")
}

withType<Test> {
reports {
junitXml.required.set(true)
}
setupTestLogging()
}

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

publish {
dependsOn(build)
}
Expand Down

0 comments on commit 7b04a11

Please sign in to comment.