Skip to content
This repository was archived by the owner on Apr 15, 2024. It is now read-only.

Commit afff4c8

Browse files
authored
fix: dummy publish task (1/2) [skip ci]
1 parent c9716be commit afff4c8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.gradle.kts

+8
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,12 @@ tasks {
4949
attributes("Implementation-Version" to project.version)
5050
}
5151
}
52+
// Dummy task to fix the Gradle semantic-release plugin.
53+
// Remove this if you forked it to support building only.
54+
// Tracking issue: https://github.com/KengoTODA/gradle-semantic-release-plugin/issues/435
55+
register<DefaultTask>("publish") {
56+
group = "publish"
57+
description = "Dummy task"
58+
dependsOn(build)
59+
}
5260
}

0 commit comments

Comments
 (0)