File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 20
20
run : ./gradlew check
21
21
- name : Publish to Maven Central
22
22
env :
23
- ORG_GRADLE_PROJECT_signKey : ${{ secrets.SIGN_KEY }}
24
- ORG_GRADLE_PROJECT_signKeyPass : ${{ secrets.SIGN_KEY_PASS }}
23
+ ORG_GRADLE_PROJECT_signingKey : ${{ secrets.SIGN_KEY }}
24
+ ORG_GRADLE_PROJECT_signingPassword : ${{ secrets.SIGN_KEY_PASS }}
25
25
ORG_GRADLE_PROJECT_sonatypeUsername : ${{ secrets.SONATYPE_USERNAME }}
26
26
ORG_GRADLE_PROJECT_sonatypePassword : ${{ secrets.SONATYPE_PASSWORD }}
27
27
run : ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository
Original file line number Diff line number Diff line change @@ -115,9 +115,9 @@ publishing {
115
115
}
116
116
117
117
signing {
118
- val signKey : String? by project
119
- val signKeyPass : String? by project
120
- useInMemoryPgpKeys(signKey, signKeyPass )
118
+ val signingKey : String? by project
119
+ val signingPassword : String? by project
120
+ useInMemoryPgpKeys(signingKey, signingPassword )
121
121
sign(publishing.publications[" maven" ])
122
122
}
123
123
You can’t perform that action at this time.
0 commit comments