@treeseed/sdk 0.6.42 → 0.6.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -942,6 +942,15 @@ async function syncRailwayServiceRuntimeConfigurationAfterDeploy(tenantRoot, ser
|
|
|
942
942
|
runtimeMode: service.runtimeMode,
|
|
943
943
|
env
|
|
944
944
|
}) : null;
|
|
945
|
+
await upsertRailwayVariables({
|
|
946
|
+
projectId: project.id,
|
|
947
|
+
environmentId: environment.id,
|
|
948
|
+
serviceId: railwayService.id,
|
|
949
|
+
variables: {
|
|
950
|
+
TREESEED_SKIP_PACKAGE_PREPARE: "1"
|
|
951
|
+
},
|
|
952
|
+
env
|
|
953
|
+
});
|
|
945
954
|
const volumeMountPath = service.runnerPool?.volumeMountPath ?? WORKER_RUNNER_VOLUME_MOUNT_PATH;
|
|
946
955
|
const volumeConfiguration = wantsRunnerVolume ? await ensureRailwayServiceVolumeWithCliFallback({
|
|
947
956
|
tenantRoot,
|