Skip to content

Commit

Permalink
Disable updateRestateDependency task on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Jan 16, 2024
1 parent 7258894 commit b2ca310
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion services/node-services/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ tasks.register<Copy>("prepareDockerBuild") {

if (!System.getenv("SDK_TYPESCRIPT_LOCAL_BUILD").isNullOrEmpty()) {
dependsOn("installLocalSdkTypescript")
} else {
} else if (System.getenv("CI").isNullOrEmpty()) {
// On CI we don't need to update the restate dependency, this is done implicitly by the e2e workflow.
dependsOn("updateRestateDependency")
}

Expand Down

0 comments on commit b2ca310

Please sign in to comment.