Skip to content

Commit

Permalink
Disable config-cache for publishPlugins task
Browse files Browse the repository at this point in the history
  • Loading branch information
bigdaz committed Nov 27, 2023
1 parent 541837b commit 4a5e8ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,10 @@ tasks.named("githubRelease").configure {
dependsOn(createReleaseTag)
}

tasks.withType(com.gradle.publish.PublishTask) {
notCompatibleWithConfigurationCache("$name task does not support configuration caching")
}

abstract class CreateGitTag : DefaultTask() {

@get:Input abstract val tagName: Property<String>
Expand Down

0 comments on commit 4a5e8ac

Please sign in to comment.