File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 2121 env :
2222 USERNAME : ${{ github.actor }}
2323 TOKEN : ${{ secrets.GITHUB_TOKEN }}
24- ORG_GRADLE_PROJECT_signingKeyId : " 4ED1648B5E695E6A"
2524 ORG_GRADLE_PROJECT_signingKey : ${{ secrets.GPG_PRIVATE_KEY }}
2625 ORG_GRADLE_PROJECT_signingPassword : ${{ secrets.GPG_PASSPHRASE }}
2726 MAVEN_USERNAME : ${{ secrets.NEXUS_USERNAME }}
Original file line number Diff line number Diff line change @@ -93,9 +93,10 @@ publishing {
9393}
9494
9595signing {
96+ def signingKeyId = " 5E695E6A"
9697 def signingKey = findProperty(" signingKey" ) ?: " key"
9798 def signingPassword = findProperty(" signingPassword" ) ?: " pass"
98- useInMemoryPgpKeys(signingKey, signingPassword)
99+ useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
99100 sign publishing. publications. mavenJava
100101}
101102
You can’t perform that action at this time.
0 commit comments