From 97548f80b33e69d58f4b753c24356b1341e5fd0b Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Wed, 23 Aug 2023 05:16:17 +0200 Subject: [PATCH] build: fix dummy publish task --- build.gradle.kts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 0c40fa2..8e661a7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -49,5 +49,8 @@ tasks { // Dummy task to fix the Gradle semantic-release plugin. // Remove this if you forked it to support building only. // Tracking issue: https://github.com/KengoTODA/gradle-semantic-release-plugin/issues/435 - register("publish") { } + register("publish") { + group = "publish" + description = "Dummy task" + } }