build: fix dummy publish task

This commit is contained in:
oSumAtrIX 2023-08-23 05:16:17 +02:00
parent d766f0e229
commit 97548f80b3
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -49,5 +49,8 @@ tasks {
// Dummy task to fix the Gradle semantic-release plugin. // Dummy task to fix the Gradle semantic-release plugin.
// Remove this if you forked it to support building only. // Remove this if you forked it to support building only.
// Tracking issue: https://github.com/KengoTODA/gradle-semantic-release-plugin/issues/435 // Tracking issue: https://github.com/KengoTODA/gradle-semantic-release-plugin/issues/435
register<DefaultTask>("publish") { } register<DefaultTask>("publish") {
group = "publish"
description = "Dummy task"
}
} }