Skip to content

Commit

Permalink
remove key id again
Browse files Browse the repository at this point in the history
  • Loading branch information
btwonion committed May 10, 2024
1 parent 1845ea8 commit 259b131
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,3 @@ jobs:
NYON_PASSWORD: ${{ secrets.NYON_PASSWORD }}
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GPG_PRIVATE_KEY_PASSWORD: ${{ secrets.GPG_PRIVATE_KEY_PASSWORD }}
GPG_SECRET_KEY_ID: ${{ secrets.GPG_SECRET_KEY_ID }}
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ publishMods {
webhookUrl = providers.environmentVariable("DISCORD_WEBHOOK")
username = "Release Notifier"
avatarUrl = "https://www.svgrepo.com/show/521999/bell.svg"
content = "# A new version of Better Boat Movement released!\n$changelogText"
}
}

Expand Down Expand Up @@ -179,10 +180,9 @@ kotlin {
}

signing {
val signingId = providers.environmentVariable("GPG_SECRET_KEY_ID").toString()
val signingKey = providers.environmentVariable("GPG_PRIVATE_KEY").toString()
val signingPassword = providers.environmentVariable("GPG_PRIVATE_KEY_PASSWORD").toString()
useInMemoryPgpKeys(signingId, signingKey, signingPassword)
useInMemoryPgpKeys(signingKey, signingPassword)

sign(publishing.publications)
}

0 comments on commit 259b131

Please sign in to comment.