Skip to content

Commit

Permalink
ci: fix signing misconfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
goatfryed committed Sep 22, 2024
1 parent 14d1209 commit 5afa9ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ publishing {
}

signing {
def signingKey = findProperty("signing.privateKey")
def signingPassword = findProperty("signing.password")
def signingKey = findProperty("signingPrivateKey")
def signingPassword = findProperty("signingPassword")
useInMemoryPgpKeys(signingKey, signingPassword)
sign publishing.publications
}

0 comments on commit 5afa9ea

Please sign in to comment.