From 7ea38a9447bebb6ad3b120222c02f2d41b32fd57 Mon Sep 17 00:00:00 2001 From: Nassim Jahnke Date: Sun, 29 Dec 2024 13:47:53 +0100 Subject: [PATCH] Mark publish tasks as not compatible with config cache for now --- universal/build.gradle.kts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/universal/build.gradle.kts b/universal/build.gradle.kts index 223746574..f4a212149 100644 --- a/universal/build.gradle.kts +++ b/universal/build.gradle.kts @@ -68,6 +68,9 @@ if (!isRelease || isMainBranch) { // Only publish releases from the main branch optional.project("viarewind") } } + tasks.modrinth { + notCompatibleWithConfigurationCache("") + } hangarPublish { publications.register("plugin") { @@ -104,4 +107,7 @@ if (!isRelease || isMainBranch) { // Only publish releases from the main branch } } } + tasks.named("publishPluginPublicationToHangar") { + notCompatibleWithConfigurationCache("") + } }