Skip to content

Commit

Permalink
Release: Fix signing (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
hfhbd authored Aug 17, 2024
1 parent 5ed94e0 commit d37065a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gradle/build-logic/src/main/kotlin/publish.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ signing {
}
}

// https://youtrack.jetbrains.com/issue/KT-46466
val signingTasks = tasks.withType<Sign>()
tasks.withType<AbstractPublishToMaven>().configureEach {
dependsOn(signingTasks)
}

tasks.withType<AbstractArchiveTask>().configureEach {
isPreserveFileTimestamps = false
isReproducibleFileOrder = true
Expand Down

0 comments on commit d37065a

Please sign in to comment.