We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0c40e1 commit e55dfbfCopy full SHA for e55dfbf
build.gradle
@@ -169,7 +169,13 @@ if (System.getenv('RELEASE_BUILD') == 'true') {
169
signing {
170
def final encodedKey = System.getenv('GPG_SIGNING_KEY')
171
def final signingKey = new String(encodedKey.decodeBase64())
172
- useInMemoryPgpKeys(signingKey, System.getenv('GPG_PASSPHRASE'))
+ allprojects {
173
+ println 'setup gpg signing with in-memory key'
174
+ useInMemoryPgpKeys(
175
+ signingKey,
176
+ System.getenv('GPG_PASSPHRASE')
177
+ )
178
+ }
179
sign publishing.publications.maven
180
}
181
0 commit comments