File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ plugins {
2424
2525if (! project. hasProperty(' mavenCentralUsername' )) ext. mavenCentralUsername = System . getenv(' MAVEN_CENTRAL_USERNAME' ) ?: ' **UNDEFINED**'
2626if (! project. hasProperty(' mavenCentralPassword' )) ext. mavenCentralPassword = System . getenv(' MAVEN_CENTRAL_PASSWORD' ) ?: ' **UNDEFINED**'
27- if (! project. hasProperty(' signing.keyId ' )) ext[ ' signing.keyId ' ] = System . getenv(' SIGNING_KEY_ID' ) ?: ' **UNDEFINED**'
28- if (! project. hasProperty(' signing.password ' )) ext[ ' signing.password ' ] = System . getenv(' SIGNING_PASSWORD' ) ?: ' **UNDEFINED**'
29- if (! project. hasProperty(' signing.secretKeyRingFile ' )) ext[ ' signing.secretKeyRingFile ' ] = System . getenv(' SIGNING_SECRET_KEY_PATH' ) ?: ' **UNDEFINED**'
27+ if (! project. hasProperty(' signingInMemoryKeyId ' )) ext. signingInMemoryKeyId = System . getenv(' SIGNING_KEY_ID' ) ?: ' **UNDEFINED**'
28+ if (! project. hasProperty(' signingInMemoryKeyPassword ' )) ext. signingInMemoryKeyPassword = System . getenv(' SIGNING_PASSWORD' ) ?: ' **UNDEFINED**'
29+ if (! project. hasProperty(' signingInMemoryKey ' )) ext. signingInMemoryKey = System . getenv(' SIGNING_SECRET_KEY_PATH' ) ? rootProject . file( System . getenv( ' SIGNING_SECRET_KEY_PATH ' )) . text : ' **UNDEFINED**'
3030
3131config {
3232 release = (rootProject. findProperty(' release' ) ?: false ). toBoolean()
You can’t perform that action at this time.
0 commit comments