Skip to content

Commit

Permalink
fix: fix build with wrong escaping in build.gradle.kts (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
aripiprazole authored Aug 29, 2023
1 parent 137d168 commit 9f02d8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
}

group = "com.openpix"
version = "0.0.9"
version = "0.0.10"

repositories {
mavenCentral()
Expand Down Expand Up @@ -154,7 +154,7 @@ configure<PublishingExtension> {
configure<SigningExtension> {
isRequired = isReleaseVersion
useInMemoryPgpKeys(
project.findProperty("signing.keyId")?.toString() ?: System.getenv("OSSRH_SIGNING_KEY"),
project.findProperty("signing.keyId")?.toString() ?: System.getenv("OSSRH_SIGNING_KEY")?.replace("\\n", "\n"),
project.findProperty("signing.password")?.toString() ?: System.getenv("OSSRH_SIGNING_PASSWORD"),
)
sign(extensions.getByType(PublishingExtension::class.java).publications.getByName("OSSRH"))
Expand Down

0 comments on commit 9f02d8c

Please sign in to comment.