Skip to content

Commit

Permalink
TMP
Browse files Browse the repository at this point in the history
Signed-off-by: Julia Plewa <[email protected]>
  • Loading branch information
jplewa committed Aug 30, 2023
1 parent 90f8c46 commit bcf5792
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,13 @@ publishing {
.forEach {
if (it is MavenPublication) {
configurePom(it)
if ((findProperty("signing.enabled") as String).toBoolean()) {
if (true) {
val signingKey: String = findProperty("signing.key") as String
val signingKeyPassword: String = findProperty("signing.key.password") as String

signing {
sign(it)
useInMemoryPgpKeys(signingKey, signingKeyPassword)
}
}
}
Expand Down

0 comments on commit bcf5792

Please sign in to comment.