We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d5a66c commit 85d5db2Copy full SHA for 85d5db2
build.gradle.kts
@@ -66,10 +66,10 @@ subprojects {
66
jcenter()
67
}
68
69
- var shouldSign = true
70
71
tasks.withType<Sign>().configureEach {
72
- onlyIf { shouldSign }
+ onlyIf { !project.gradle.startParameter.taskNames.contains("publishToMavenLocal")
+ }
73
74
75
@@ -169,9 +169,6 @@ subprojects {
169
println("Skipping Firebase zip download")
170
171
172
- tasks.named("publishToMavenLocal").configure {
173
- shouldSign = false
174
- }
175
176
dependencies {
177
"commonMainImplementation"(kotlin("stdlib-common"))
0 commit comments