Is there any way to pass `signing.gnupg.passphrase...
# gradle
j
Is there any way to pass
signing.gnupg.passphrase
as
gradle publish
task param instead of defining it in gradle.properties?
Copy code
gradle publish -Psigning.gnupg.keyName=[keyId] -Dsigning.gnupg.passphrase=[passphrase]
The -P instead of -D for keyName was the problem…
t
you can also store it in
~/.gradle/gradle.properties
j
I can't, I want to use it with GItHub actions easily. In local works, but I think I have to add the key to the CI to get it working