Skip to content

Commit d145fbc

Browse files
committed
Require forceSign property even on releases
1 parent 3ca960e commit d145fbc

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build-logic/src/main/kotlin/essentials.base-conventions.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ tasks {
7070
withType<Jar> {
7171
archiveVersion.set(rootProject.ext["FULL_VERSION"] as String)
7272
}
73+
withType<Sign> {
74+
onlyIf { project.hasProperty("forceSign") }
75+
}
7376
}
7477

7578
// Dependency caching

0 commit comments

Comments
 (0)