We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
onlyIf {}
1 parent 6ff6573 commit 8236a5eCopy full SHA for 8236a5e
gcpbuildcache/build.gradle.kts
@@ -89,5 +89,6 @@ tasks.named<Task>("check") {
89
}
90
91
tasks.withType<Sign>().configureEach {
92
- onlyIf { project.hasProperty("signing.keyId") }
+ val signingKeyIdPresent = project.hasProperty("signing.keyId")
93
+ onlyIf("signing.keyId is present") { signingKeyIdPresent }
94
s3buildcache/build.gradle.kts
@@ -98,5 +98,6 @@ tasks.named<Task>("check") {
98
99
100
101
102
103
0 commit comments