Skip to content

Commit

Permalink
fix: dummy publish task (1/2) [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas committed Jun 16, 2022
1 parent c9716be commit afff4c8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

0 comments on commit afff4c8

Please sign in to comment.