Skip to content

Commit

Permalink
Merge pull request #150 from shiraji/shiraji/signing
Browse files Browse the repository at this point in the history
Add signing
  • Loading branch information
shiraji committed Feb 25, 2024
2 parents 3e94fd1 + db1105d commit a479fe3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ tasks {
changeNotes.set(project.file("LATEST.txt").readText())
}

signPlugin {
certificateChain.set(System.getenv("CERTIFICATE_CHAIN"))
privateKey.set(System.getenv("PRIVATE_KEY"))
password.set(System.getenv("PRIVATE_KEY_PASSWORD"))
}

publishPlugin {
token.set(System.getenv("HUB_TOKEN"))
channels.set(listOf(System.getProperty("CHANNELS") ?: "beta"))
Expand Down

0 comments on commit a479fe3

Please sign in to comment.