We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac9aaa commit 21a1ce9Copy full SHA for 21a1ce9
1 file changed
build.gradle.kts
@@ -77,8 +77,8 @@ gradlePlugin {
77
}
78
79
signing {
80
- val signingKey: String? by project
81
- val signingPassword: String? by project
+ val signingKey = providers.gradleProperty("signingKey").orNull
+ val signingPassword = providers.gradleProperty("signingPassword").orNull
82
useInMemoryPgpKeys(signingKey, signingPassword)
83
84
0 commit comments