Skip to content

Commit

Permalink
Add in memory pgp signing
Browse files Browse the repository at this point in the history
  • Loading branch information
jeggy committed Apr 6, 2021
1 parent ffe0723 commit 654a508
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arkenv-yaml/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,9 @@ publishing {

signing {
isRequired = isReleaseVersion
useInMemoryPgpKeys(
System.getenv("ORG_GRADLE_PROJECT_signingKey"),
System.getenv("ORG_GRADLE_PROJECT_signingPassword")
)
sign(publishing.publications["maven"])
}
4 changes: 4 additions & 0 deletions arkenv/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,9 @@ publishing {

signing {
isRequired = isReleaseVersion
useInMemoryPgpKeys(
System.getenv("ORG_GRADLE_PROJECT_signingKey"),
System.getenv("ORG_GRADLE_PROJECT_signingPassword")
)
sign(publishing.publications["maven"])
}

0 comments on commit 654a508

Please sign in to comment.