Skip to content

Commit a0111e9

Browse files
committed
Adapting KmpComposeUIViewControllerPublishPlugin
1 parent 141a0c1 commit a0111e9

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

.github/workflows/publish-maven-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ jobs:
4141
env:
4242
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.SIGNING_KEY_ID }}
4343
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}
44-
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.GPG_KEY_CONTENTS }}
44+
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_SECRET_KEY }}
4545
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
4646
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}

build-logic/conventions/src/main/kotlin/KmpComposeUIViewControllerPublishPlugin.kt

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,6 @@ class KmpComposeUIViewControllerPublishPlugin : Plugin<Project> {
3838
return
3939
}
4040

41-
listOf(
42-
"signing.keyId",
43-
"signing.password",
44-
"signing.secretKey",
45-
"signing.secretKeyRingFile",
46-
"signingInMemoryKeyId",
47-
"signingInMemoryKeyPassword",
48-
"signingInMemoryKey",
49-
"mavenCentralUsername",
50-
"mavenCentralPassword"
51-
).forEach { key ->
52-
project.logger.lifecycle(">> $key = ${project.findProperty(key)?.let { "***" } ?: "null"}")
53-
}
54-
5541
project.plugins.apply("com.vanniktech.maven.publish")
5642

5743
val mavenPublishing = project.extensions.getByName("mavenPublishing")

0 commit comments

Comments
 (0)