From fdb1d12bdf7c276d89545a84bfad48420d4d37dc Mon Sep 17 00:00:00 2001 From: Sergey Okatov Date: Sun, 14 Apr 2024 14:17:12 +0500 Subject: [PATCH] Fix ios signing publication task 1 --- build.gradle.kts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1846475..8a1e3c3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -170,8 +170,13 @@ tasks { } withType().configureEach { - val signingTasks = withType() - mustRunAfter(signingTasks) + mustRunAfter(withType()) + } + + filter { it.name.startsWith("link") }.forEach { + it.name { + mustRunAfter(withType()) + } } publish {