Skip to content

Commit

Permalink
signingPassword -> signKeyPass
Browse files Browse the repository at this point in the history
singingKey -> signKey
  • Loading branch information
yweber committed Mar 30, 2021
1 parent a63c15e commit 057ec3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
run: ./graldew check
- name: Publish to Maven Central
env:
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGN_KEY }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGN_KEY_PASS }}
ORG_GRADLE_PROJECT_signKey: ${{ secrets.SIGN_KEY }}
ORG_GRADLE_PROJECT_signKeyPass: ${{ secrets.SIGN_KEY_PASS }}
ORG_GRADLE_PROJECT_sonatypeUsername: ${{ secrets.SONATYPE_USERNAME }}
ORG_GRADLE_PROJECT_sonatypePassword: ${{ secrets.SONATYPE_PASSWORD }}
run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ nexusPublishing {
}

signing {
val signingKey = "${project.findProperty("signingKey")}"
val signingPassword = "${project.findProperty("signingPassword")}"
useInMemoryPgpKeys(signingKey, signingPassword)
val signKey = "${project.findProperty("signKey")}"
val signKeyPass = "${project.findProperty("signKeyPass")}"
useInMemoryPgpKeys(signKey, signKeyPass)
sign(publishing.publications["extensionSdk"])
}

Expand Down

0 comments on commit 057ec3a

Please sign in to comment.