Skip to content

Commit

Permalink
Fix publishing for api types
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Dec 7, 2024
1 parent d42a3c1 commit 2b5710a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music/api/types/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ signing {
val signingPassword = System.getenv("SIGNING_KEY_PASSWORD")?.toString()
if (signingKey != null && signingPassword != null) {
useInMemoryPgpKeys(String(Base64.getDecoder().decode(signingKey)), signingPassword)
sign(publishing.publications["maven"])
publishing.publications.forEach { sign(it) }
}
}

0 comments on commit 2b5710a

Please sign in to comment.