File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 55
55
MAVEN_USERNAME : ${{ secrets.OSSRH_USERNAME }}
56
56
MAVEN_PASSWORD : ${{ secrets.OSSRH_TOKEN }}
57
57
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
58
+ ORG_GRADLE_PROJECT_SIGNINGKEY : ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGKEY }}
59
+ ORG_GRADLE_PROJECT_SIGNINGPASSWORD : ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGPASSWORD }}
58
60
59
61
create-release :
60
62
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -50,5 +50,8 @@ publishing {
50
50
}
51
51
52
52
signing {
53
+ def signingKey = System . getenv(' ORG_GRADLE_PROJECT_SIGNINGKEY' )
54
+ def signingPassword = System . getenv(' ORG_GRADLE_PROJECT_SIGNINGPASSWORD' )
55
+ useInMemoryPgpKeys(signingKey, signingPassword)
53
56
sign publishing. publications. maven
54
57
}
You can’t perform that action at this time.
0 commit comments