Skip to content

Commit fbe2c91

Browse files
committed
Fix implicit dependency between signing and publishing tasks
1 parent f4004db commit fbe2c91

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

core/build.gradle.kts

+6
Original file line numberDiff line numberDiff line change
@@ -386,3 +386,9 @@ tasks.withType<AbstractDokkaLeafTask>().configureEach {
386386
}
387387
}
388388
}
389+
390+
// TODO: Move to kotlinx.team.infra
391+
val signingTasks = tasks.withType<Sign>()
392+
tasks.withType<AbstractPublishToMaven>().configureEach {
393+
mustRunAfter(signingTasks)
394+
}

0 commit comments

Comments
 (0)