Skip to content

Commit

Permalink
Set signing credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
bidetofevil committed Jul 4, 2024
1 parent d893e93 commit 58f9d95
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ nexusPublishing {
}

allprojects {
ext.properties["signing.keyId"] = System.getenv("mavenSigningKeyId") ?: localProperties.getProperty("signing.keyId")
ext.properties["signing.secretKeyRingFile"] = System.getenv("mavenSigningKeyRingFile") ?: localProperties.getProperty("signing.secretKeyRingFile")
ext.properties["signing.password"] = System.getenv("mavenSigningKeyPassword") ?: localProperties.getProperty("signing.password")

repositories {
google()
maven(url = "https://plugins.gradle.org/m2/")
Expand Down

0 comments on commit 58f9d95

Please sign in to comment.