diff --git a/build.gradle.kts b/build.gradle.kts index 8ff8388..d0d31c8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -11,7 +11,7 @@ plugins { } group = "com.openpix" -version = "0.0.9" +version = "0.0.10" repositories { mavenCentral() @@ -154,7 +154,7 @@ configure { configure { 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"))