Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
eval-exec committed Feb 5, 2025
1 parent 66e0498 commit 89f54cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
env:
ORG_GRADLE_PROJECT_ossrhUsername: ${{ secrets.NEXUS_OSSRH_USERNAME }}
ORG_GRADLE_PROJECT_ossrhPassword: ${{ secrets.NEXUS_OSSRH_PASSWORD }}
ORG_GRADLE_PROJECT_signing.keyId: ${{ secrets.NEXUS_SIGNING_KEYID }}
ORG_GRADLE_PROJECT_signing.password: ${{ secrets.NEXUS_SIGNING_PASSWORD }}
ORG_GRADLE_PROJECT_signing.secretKeyRingFile: "./secret_key.gpg"
ORG_GRADLE_PROJECT_signingKeyId: ${{ secrets.NEXUS_SIGNING_KEYID }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.NEXUS_SIGNING_PASSWORD }}
ORG_GRADLE_PROJECT_signingSecretKeyRingFile: "./secret_key.gpg"
run: |
./gradlew uploadArchives
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ configure(subprojects.findAll { it.name != 'tests' }) {

signing {
useInMemoryPgpKeys(
project.property("signing.keyId") as String,
file(project.property("signing.secretKeyRingFile") as String).readText(),
project.property("signing.password") as String
project.property("signingkeyId") as String,
file(project.property("signingSecretKeyRingFile") as String).readText(),
project.property("signingPassword") as String
)
sign publishing.publications.mavenJava
}
Expand Down

0 comments on commit 89f54cf

Please sign in to comment.