Skip to content

Commit 292b6f9

Browse files
Disable updateRestateDependency task on CI
1 parent 7258894 commit 292b6f9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

services/node-services/build.gradle.kts

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ tasks.register<Copy>("prepareDockerBuild") {
2929

3030
if (!System.getenv("SDK_TYPESCRIPT_LOCAL_BUILD").isNullOrEmpty()) {
3131
dependsOn("installLocalSdkTypescript")
32-
} else {
32+
} else if (System.getenv("CI").isNullOrEmpty()) {
33+
// On CI we don't need to update the restate dependency, this is done implicitly by the e2e
34+
// workflow.
3335
dependsOn("updateRestateDependency")
3436
}
3537

0 commit comments

Comments
 (0)