Skip to content

Commit

Permalink
Correct key id.
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Tegnér <johannes@jitesoft.com>
  • Loading branch information
Johannestegner committed Oct 8, 2020
1 parent 704935c commit 431bf8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
env:
USERNAME: ${{ github.actor }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}
ORG_GRADLE_PROJECT_signingKeyId: "4ED1648B5E695E6A"
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.GPG_PRIVATE_KEY }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.GPG_PASSPHRASE }}
MAVEN_USERNAME: ${{ secrets.NEXUS_USERNAME }}
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,10 @@ publishing {
}

signing {
def signingKeyId = "5E695E6A"
def signingKey = findProperty("signingKey") ?: "key"
def signingPassword = findProperty("signingPassword") ?: "pass"
useInMemoryPgpKeys(signingKey, signingPassword)
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
sign publishing.publications.mavenJava
}

Expand Down

0 comments on commit 431bf8a

Please sign in to comment.