Skip to content

Commit

Permalink
GPG_PRIVATE_KEY parsing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bgalek committed Mar 20, 2023
1 parent b1d23f7 commit 151394b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ if (System.getenv("GPG_KEY_ID") != null) {
signing {
useInMemoryPgpKeys(
System.getenv("GPG_KEY_ID"),
System.getenv("GPG_PRIVATE_KEY"),
System.getenv("GPG_PRIVATE_KEY").replace(" ", "\n"),
System.getenv("GPG_PRIVATE_KEY_PASSWORD")
)
sign(publishing.publications)
Expand Down

0 comments on commit 151394b

Please sign in to comment.