fix: revert removing workaround task `publish`

This reverts commit 89f866d739.
This commit is contained in:
oSumAtrIX 2023-01-02 08:56:56 +01:00
parent 843dd9de9e
commit 64c31b84e7
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,12 @@ buildscript {
}
}
// Tracking issue https://github.com/semantic-release/semantic-release/issues/963
tasks.register("publish", DefaultTask::class) {
group = "publish"
description = "Dummy publish to pass the verification phase of the gradle-semantic-release-plugin"
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}