Skip to content

Commit 0ddf25f

Browse files
committed
fix sign dep
1 parent 1a3e73d commit 0ddf25f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

publish.gradle

+4-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,10 @@ signing {
8080
def signingKey = System.getenv("SIGNING_KEY")
8181
def signingPassword = System.getenv("SIGNING_PASSWORD")
8282
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
83-
sign(publishing.publications)
83+
}
84+
85+
publishing.publications.configureEach {
86+
signing.sign(this)
8487
}
8588

8689
tasks.withType(Sign) {

0 commit comments

Comments
 (0)