Skip to content

Commit

Permalink
Yet one more variant
Browse files Browse the repository at this point in the history
  • Loading branch information
deusaquilus committed Feb 2, 2024
1 parent facac04 commit 2ebfea6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,9 @@ subprojects {
}

signing {
val signingKey = System.getenv("NEW_SIGNING_KEY_ID_BASE64")
if (signingKey == null) error("ERROR: No Signing Key Found")
val signingKeyRaw = System.getenv("NEW_SIGNING_KEY_ID_BASE64")
if (signingKeyRaw == null) error("ERROR: No Signing Key Found")
val signingKey = "-----BEGIN PGP PRIVATE KEY BLOCK-----\n\n${signingKeyRaw}\n-----END PGP PRIVATE KEY BLOCK-----"
useInMemoryPgpKeys(
System.getenv("NEW_SIGNING_KEY_ID_BASE64_ID"),
signingKey,
Expand Down

0 comments on commit 2ebfea6

Please sign in to comment.