From fecbfc41308d816a71db5ef0f378cc9f9f86720d Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Tue, 4 Jan 2022 23:20:02 +0600 Subject: [PATCH] update publish.gradle --- publish.gradle | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/publish.gradle b/publish.gradle index 788128f..c6658ea 100644 --- a/publish.gradle +++ b/publish.gradle @@ -70,4 +70,10 @@ if (project.hasProperty("signing.gnupg.keyName")) { sign publishing.publications } -} \ No newline at end of file + + task signAll { + tasks.withType(Sign).forEach { + dependsOn(it) + } + } +}