Skip to content

Commit

Permalink
fix: dummy task for Gradle semantic-release plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas committed Jun 16, 2022
1 parent 30d5c9a commit f6a8911
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,14 @@ dependencies {
implementation(kotlin("stdlib"))

implementation("app.revanced:revanced-patcher:1.1.0")
}

tasks {
// 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"
}
}

0 comments on commit f6a8911

Please sign in to comment.