Skip to content

Commit

Permalink
Fix included builds participating in publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
melix committed Feb 28, 2022
1 parent b02e84f commit 72d3ef9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ listOf(
description = "Publishes all artifacts to the ${repo.decapitalize()} repository"
group = PublishingPlugin.PUBLISH_TASK_GROUP
gradle.includedBuilds.forEach {
if (it.name != "docs") {
if (it.name != "docs" && !it.projectDir.path.contains("build-logic")) {
dependsOn(it.task(":$taskPrefix$repo"))
}
}
Expand Down

0 comments on commit 72d3ef9

Please sign in to comment.