Skip to content

Commit

Permalink
Fix bad env name in signing plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Dec 13, 2023
1 parent 8d8d11b commit 99835b0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ project.afterEvaluate {
signing {
setRequired { !project.hasProperty("skipSigning") }

val key = System.getenv("MAVEN_CENTRAL_GPG_KEY") ?: return@signing
val key = System.getenv("MAVEN_CENTRAL_GPG_PRIVATE_KEY") ?: return@signing
val password = System.getenv("MAVEN_CENTRAL_GPG_PASSPHRASE") ?: return@signing
val publishing: PublishingExtension by project

Expand Down

0 comments on commit 99835b0

Please sign in to comment.