Skip to content

Commit

Permalink
Fix implicit dependency between signing and publishing tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-g committed Aug 31, 2023
1 parent f4004db commit fbe2c91
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -386,3 +386,9 @@ tasks.withType<AbstractDokkaLeafTask>().configureEach {
}
}
}

// TODO: Move to kotlinx.team.infra
val signingTasks = tasks.withType<Sign>()
tasks.withType<AbstractPublishToMaven>().configureEach {
mustRunAfter(signingTasks)
}

0 comments on commit fbe2c91

Please sign in to comment.