Skip to content

Commit

Permalink
Fix sign
Browse files Browse the repository at this point in the history
  • Loading branch information
kotcrab committed Feb 21, 2021
1 parent bc8edd5 commit fa489c8
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
env:
ORG_GRADLE_PROJECT_ossrhUsername: ${{ secrets.ossrhUsername }}
ORG_GRADLE_PROJECT_ossrhPassword: ${{ secrets.ossrhPassword }}
ORG_GRADLE_PROJECT_signingKeyId: ${{ secrets.signingKeyId }}
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.signingKey }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.signingPassword }}
- name: Close repository
Expand Down
3 changes: 1 addition & 2 deletions deploy.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ javadoc {

signing {
required { isReleaseVersion || gradle.taskGraph.hasTask("uploadArchives") }
def signingKeyId = findProperty("signingKeyId")
def signingKey = findProperty("signingKey")
def signingPassword = findProperty("signingPassword")
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
useInMemoryPgpKeys(signingKey, signingPassword)
sign configurations.archives
}

Expand Down

0 comments on commit fa489c8

Please sign in to comment.