fix: dummy publish task (1/2) [skip ci]

This commit is contained in:
Sculas 2022-06-16 12:09:12 +02:00 committed by GitHub
parent c9716be205
commit afff4c8418
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,4 +49,12 @@ tasks {
attributes("Implementation-Version" to project.version)
}
}
// 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<DefaultTask>("publish") {
group = "publish"
description = "Dummy task"
dependsOn(build)
}
}