Skip to content

Commit

Permalink
build: disable buildForGithubAction for some submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolLoong committed Mar 11, 2024
1 parent 2a61a73 commit 4497388
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Allay-CodeGen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,8 @@ dependencies {
implementation(libs.gson)
implementation(libs.fastutil)
implementation(libs.annotations)
}

tasks.buildForGithubAction {
enabled = false
}
4 changes: 4 additions & 0 deletions Allay-Data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ dependencies {
implementation(project(":Allay-Server"))
}

tasks.buildForGithubAction {
enabled = false
}

tasks.processResources {
from("${rootProject.projectDir}/Allay-Data/resources")
include("unpacked/**")
Expand Down
4 changes: 4 additions & 0 deletions Allay-ExamplePlugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ dependencies {
compileOnly(project(":Allay-API"))
}

tasks.buildForGithubAction {
enabled = false
}

tasks.shadowJar {
destinationDirectory = File("${rootProject.projectDir}/.run/plugins")
}
4 changes: 4 additions & 0 deletions Allay-SparkPlugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ dependencies {
}
}

tasks.buildForGithubAction {
enabled = false
}

tasks.processResources {
filesMatching("plugin.json") {
expand(
Expand Down

0 comments on commit 4497388

Please sign in to comment.