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_signingKey : ${{ secrets.SIGN_KEY }}
24
- ORG_GRADLE_PROJECT_signingPassword : ${{ secrets.SIGN_KEY_PASS }}
23
+ ORG_GRADLE_PROJECT_signKey : ${{ secrets.SIGN_KEY }}
24
+ ORG_GRADLE_PROJECT_signKeyPass : ${{ 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 @@ -118,9 +118,9 @@ publishing {
118
118
}
119
119
120
120
signing {
121
- val signingKey : String? by project
122
- val signingPassword : String? by project
123
- useInMemoryPgpKeys(signingKey, signingPassword )
121
+ val signKey : String? by project
122
+ val signKeyPass : String? by project
123
+ useInMemoryPgpKeys(signKey, signKeyPass )
124
124
sign(publishing.publications[" maven" ])
125
125
}
126
126
You can’t perform that action at this time.
0 commit comments