Skip to content
This repository was archived by the owner on Jan 31, 2022. It is now read-only.

Commit 6187f79

Browse files
committed
chore(gradle): fix signing condition
1 parent 1ff45bb commit 6187f79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algoliasearch/common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ artifacts {
138138

139139
// Sign all the archives artifacts.
140140
signing {
141-
required { gradle.taskGraph.hasTask("signArchives") }
141+
required { project.hasProperty("group")? project.property("group") != "com.github.algolia" : true}
142142
sign configurations.archives
143143
}
144144

0 commit comments

Comments
 (0)