Skip to content

Commit

Permalink
build: add signing key password
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaiR committed Sep 29, 2023
1 parent 2cef96d commit eb2b285
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ ext.configurePublishing = { packageName, packageDesc, packageVersion ->
signing {
def signingKeyId = System.getenv('SIGNING_KEY_ID')
def signingKey = System.getenv('SIGNING_KEY')
useInMemoryPgpKeys(signingKeyId, signingKey, '')
def signingKeyPass = System.getenv('SIGNING_KEY_PASS')
useInMemoryPgpKeys(signingKeyId, signingKey, signingKeyPass)
sign publishing.publications.imgui
}
}
Expand Down

0 comments on commit eb2b285

Please sign in to comment.