We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7258894 commit 292b6f9Copy full SHA for 292b6f9
services/node-services/build.gradle.kts
@@ -29,7 +29,9 @@ tasks.register<Copy>("prepareDockerBuild") {
29
30
if (!System.getenv("SDK_TYPESCRIPT_LOCAL_BUILD").isNullOrEmpty()) {
31
dependsOn("installLocalSdkTypescript")
32
- } else {
+ } 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.
35
dependsOn("updateRestateDependency")
36
}
37
0 commit comments