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 19
19
- name : Publish to Maven Central
20
20
run : ./gradlew publishEmbeddedPublicationToSonatypeRepository closeAndReleaseSonatypeStagingRepository
21
21
env :
22
- ORG_GRADLE_PROJECT_signKey : ${{ secrets.SIGN_KEY }}
23
- ORG_GRADLE_PROJECT_signKeyPass : ${{ secrets.SIGN_KEY_PASS }}
22
+ ORG_GRADLE_PROJECT_signingKey : ${{ secrets.SIGNING_KEY }}
23
+ ORG_GRADLE_PROJECT_signingPassword : ${{ secrets.SIGNING_PASSWORD }}
24
24
ORG_GRADLE_PROJECT_sonatypeUsername : ${{ secrets.SONATYPE_USERNAME }}
25
25
ORG_GRADLE_PROJECT_sonatypePassword : ${{ secrets.SONATYPE_PASSWORD }}
26
26
- name : Push To Docker Hub
Original file line number Diff line number Diff line change @@ -354,9 +354,9 @@ publishing {
354
354
}
355
355
356
356
signing {
357
- val signKey : String? by project
358
- val signKeyPass : String? by project
359
- useInMemoryPgpKeys(signKey, signKeyPass )
357
+ val signingKey : String? by project
358
+ val signingPassword : String? by project
359
+ useInMemoryPgpKeys(signingKey, signingPassword )
360
360
sign(publishing.publications[" embedded" ])
361
361
}
362
362
You can’t perform that action at this time.
0 commit comments