Skip to content

Commit

Permalink
Fix keyring path
Browse files Browse the repository at this point in the history
  • Loading branch information
t895 committed Sep 9, 2024
1 parent 2e3a882 commit 1b88807
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ext["mavenUsername"] = System.getenv("MAVEN_USERNAME")
ext["mavenPassword"] = System.getenv("MAVEN_PASSWORD")
ext["signing.keyId"] = System.getenv("SIGNING_KEY_ID")
ext["signing.password"] = System.getenv("SIGNING_PASSWORD")
ext["signing.secretKeyRingFile"] = "./keyring.gpg"
ext["signing.secretKeyRingFile"] = projectDir.resolve("keyring.gpg")

val javadocJar by tasks.registering(Jar::class) {
archiveClassifier.set("javadoc")
Expand Down

0 comments on commit 1b88807

Please sign in to comment.