build: fix skipping artifact signature task when publishing locally

This commit is contained in:
thunderbiscuit
2024-04-09 16:15:50 -04:00
parent 0eadff1327
commit a40702ebd9
4 changed files with 11 additions and 4 deletions

View File

@@ -107,6 +107,10 @@ afterEvaluate {
}
signing {
if (project.hasProperty("localBuild")) {
isRequired = false
}
val signingKeyId: String? by project
val signingKey: String? by project
val signingPassword: String? by project