Skip to content

Commit

Permalink
Configure tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
magx2 committed Oct 27, 2024
1 parent 5ab7898 commit 9b33926
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 @@ -219,8 +219,8 @@ prodProjects {

signing {
useInMemoryPgpKeys(
project.property("signing.keyId") ?: System.getenv("SIGNING_KEY"),
project.property("signing.password") ?: System.getenv("SIGNING_PASSWORD")
project.hasProperty("signing.keyId") ? project.property("signing.keyId") : System.getenv("SIGNING_KEY"),
project.hasProperty("signing.password") ? project.property("signing.password") : System.getenv("SIGNING_PASSWORD")
)
sign configurations.archives
}
Expand Down

0 comments on commit 9b33926

Please sign in to comment.