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
run : ./graldew check
20
20
- name : Publish to Maven Central
21
21
env :
22
- ORG_GRADLE_PROJECT_signingKey : ${{ secrets.SIGN_KEY }}
23
- ORG_GRADLE_PROJECT_signingPassword : ${{ secrets.SIGN_KEY_PASS }}
22
+ ORG_GRADLE_PROJECT_signKey : ${{ secrets.SIGN_KEY }}
23
+ ORG_GRADLE_PROJECT_signKeyPass : ${{ secrets.SIGN_KEY_PASS }}
24
24
ORG_GRADLE_PROJECT_sonatypeUsername : ${{ secrets.SONATYPE_USERNAME }}
25
25
ORG_GRADLE_PROJECT_sonatypePassword : ${{ secrets.SONATYPE_PASSWORD }}
26
26
run : ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository
Original file line number Diff line number Diff line change @@ -123,9 +123,9 @@ nexusPublishing {
123
123
}
124
124
125
125
signing {
126
- val signingKey = " ${project.findProperty(" signingKey " )} "
127
- val signingPassword = " ${project.findProperty(" signingPassword " )} "
128
- useInMemoryPgpKeys(signingKey, signingPassword )
126
+ val signKey = " ${project.findProperty(" signKey " )} "
127
+ val signKeyPass = " ${project.findProperty(" signKeyPass " )} "
128
+ useInMemoryPgpKeys(signKey, signKeyPass )
129
129
sign(publishing.publications[" kafkaExtensionCustomizationSdk" ])
130
130
}
131
131
You can’t perform that action at this time.
0 commit comments