Skip to content

Commit d0e1b5e

Browse files
author
yweber
committed
signingPassword -> signKeyPass
signingKey -> signKey
1 parent adfaf3c commit d0e1b5e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
run: ./graldew check
2020
- name: Publish to Maven Central
2121
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 }}
2424
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }}
2525
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }}
2626
run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ nexusPublishing {
123123
}
124124

125125
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)
129129
sign(publishing.publications["kafkaExtensionCustomizationSdk"])
130130
}
131131

0 commit comments

Comments
 (0)