You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val signingKey = getProperty(projectKey ="gpg.key", environmentKey ="gpg_private_key")
67
-
val passPhrase = getProperty(projectKey ="gpg.passphrase", environmentKey ="gpg_passphrase")
68
-
signing {
69
-
if (passPhrase ==null) {
70
-
logger.warn(
71
-
"The passphrase for the signing key was not found. Either provide it as env variable 'gpg_passphrase' or as project property 'gpg_passphrase'. Otherwise the signing might fail!"
72
-
)
73
-
}
74
-
useInMemoryPgpKeys(signingKey, passPhrase)
75
-
sign(publishing.publications)
65
+
val signingKey = getProperty(projectKey ="gpg.key", environmentKey ="gpg_private_key")
66
+
val passPhrase = getProperty(projectKey ="gpg.passphrase", environmentKey ="gpg_passphrase")
67
+
signing {
68
+
if (passPhrase ==null) {
69
+
logger.warn(
70
+
"The passphrase for the signing key was not found. "+
71
+
"Either provide it as env variable 'gpg_passphrase' or "+
72
+
"as project property 'gpg_passphrase'. Otherwise the signing might fail!"
0 commit comments