From 3a2655b38b7e2994ece550ccefadbc70a31f7fa4 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Sat, 2 Jul 2022 13:35:37 +0200 Subject: [PATCH] fix: add missing dummy task `publish` --- build.gradle | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build.gradle b/build.gradle index 0a5a8626..0b2ebc64 100644 --- a/build.gradle +++ b/build.gradle @@ -20,6 +20,12 @@ allprojects { } } +// Tracking issue https://github.com/semantic-release/semantic-release/issues/963 +task publish(type: DefaultTask) { + group = 'publish' + description = 'Dummy publish to pass the verification phase of the gradle-semantic-release-plugin' +} + task clean(type: Delete) { delete rootProject.buildDir } \ No newline at end of file