update publish.gradle

This commit is contained in:
InsanusMokrassar 2022-01-04 23:20:02 +06:00
parent bf3c4bc11f
commit fecbfc4130
1 changed files with 7 additions and 1 deletions

View File

@ -70,4 +70,10 @@ if (project.hasProperty("signing.gnupg.keyName")) {
sign publishing.publications
}
}
task signAll {
tasks.withType(Sign).forEach {
dependsOn(it)
}
}
}