Skip to content

Commit 8b3abf3

Browse files
author
ahmetduruer
committed
test
1 parent 7dcec32 commit 8b3abf3

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

build.gradle.kts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -178,17 +178,17 @@ publishing {
178178
}
179179
}
180180

181-
signing {
182-
val signingKey = System.getenv("GPG_PRIVATE_KEY")?.let { String(Base64.getDecoder().decode(it.replace("\n", ""))) }
183-
val signingPassphrase = System.getenv("GPG_PASSPHRASE")
184-
185-
if (!signingKey.isNullOrEmpty() && !signingPassphrase.isNullOrEmpty()) {
186-
useInMemoryPgpKeys(signingKey, signingPassphrase)
187-
sign(publishing.publications)
188-
} else {
189-
logger.warn("Signing is not configured. Skipping signing tasks.")
190-
}
191-
}
181+
//signing {
182+
// val signingKey = System.getenv("GPG_PRIVATE_KEY")?.let { String(Base64.getDecoder().decode(it.replace("\n", ""))) }
183+
// val signingPassphrase = System.getenv("GPG_PASSPHRASE")
184+
//
185+
// if (!signingKey.isNullOrEmpty() && !signingPassphrase.isNullOrEmpty()) {
186+
// useInMemoryPgpKeys(signingKey, signingPassphrase)
187+
// sign(publishing.publications)
188+
// } else {
189+
// logger.warn("Signing is not configured. Skipping signing tasks.")
190+
// }
191+
//}
192192

193193
java {
194194
withJavadocJar()

0 commit comments

Comments
 (0)