Skip to content

Commit b2ca310

Browse files
Disable updateRestateDependency task on CI
1 parent 7258894 commit b2ca310

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

services/node-services/build.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ 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 workflow.
3334
dependsOn("updateRestateDependency")
3435
}
3536

0 commit comments

Comments
 (0)