Skip to content

Commit fa67174

Browse files
committed
fix release
1 parent 1a202ba commit fa67174

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,7 @@ nexusPublishing {
7777
}
7878

7979
// skip signing for jitpack (snapshots)
80-
tasks.withType(Sign).configureEach {
81-
onlyIf { !System.getenv('JITPACK') && !it.version.endsWith('-SNAPSHOT') }
82-
}
80+
tasks.withType(Sign) { onlyIf { !System.getenv('JITPACK') && !version.endsWith('-SNAPSHOT') } }
8381

8482
// Required signing properties for release: signing.keyId, signing.password and signing.secretKeyRingFile
8583
// (https://docs.gradle.org/current/userguide/signing_plugin.html#sec:signatory_credentials)

0 commit comments

Comments
 (0)