This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: gate signAllPublications() on signingEnabled property

Without this, publishToMavenLocal fails because GPG signing is mandatory.
Local consumers (like the kima app) don't need signatures. CI publishing
to Maven Central can still opt-in via -PsigningEnabled=true.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+6 -1
+6 -1
posedetection/build.gradle.kts
··· 31 31 developerConnection.set("scm:git:ssh://git@tangled.sh:nateholland.bsky.social/PoseDetection") 32 32 } 33 33 } 34 - signAllPublications() 34 + // Only sign when explicitly enabled (CI / Maven Central). Local 35 + // `publishToMavenLocal` runs for consumers like the kima app and 36 + // doesn't need GPG signatures. 37 + if (project.findProperty("signingEnabled") == "true") { 38 + signAllPublications() 39 + } 35 40 } 36 41 plugins { 37 42 alias(libs.plugins.multiplatform)