From 793c882449bc8152daa7b4a9883f89f39d03b323 Mon Sep 17 00:00:00 2001 From: Sollace Date: Thu, 13 Jan 2022 11:34:15 +0200 Subject: [PATCH] Make sure the jar is published to modrinth on release --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 9c9a113f..3e02f5b2 100644 --- a/build.gradle +++ b/build.gradle @@ -116,7 +116,7 @@ import com.modrinth.minotaur.TaskModrinthUpload task publishModrinth (type: TaskModrinthUpload){ onlyIf { def stage = version.version.stage.value - stage != null && stage.name != 'beta' + stage == null || stage.name != 'beta' } token = System.env.MODRINTH_KEY