We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a202ba commit fa67174Copy full SHA for fa67174
build.gradle
@@ -77,9 +77,7 @@ nexusPublishing {
77
}
78
79
// skip signing for jitpack (snapshots)
80
-tasks.withType(Sign).configureEach {
81
- onlyIf { !System.getenv('JITPACK') && !it.version.endsWith('-SNAPSHOT') }
82
-}
+tasks.withType(Sign) { onlyIf { !System.getenv('JITPACK') && !version.endsWith('-SNAPSHOT') } }
83
84
// Required signing properties for release: signing.keyId, signing.password and signing.secretKeyRingFile
85
// (https://docs.gradle.org/current/userguide/signing_plugin.html#sec:signatory_credentials)
0 commit comments