aboutsummaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
Diffstat (limited to '.ci')
-rw-r--r--.ci/ci.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/.ci/ci.ts b/.ci/ci.ts
index 5888f96..b3fb75c 100644
--- a/.ci/ci.ts
+++ b/.ci/ci.ts
@@ -93,8 +93,7 @@ const getPipeline = () => {
},
};
gitHookPipeline.addStage({ parallelJobs: [publishModel, deployServer] });
- // deployWorker restarts the container running this pipeline, so it goes last and alone
- gitHookPipeline.addStage({ parallelJobs: [deployWorker] });
+ gitHookPipeline.addStage({ parallelJobs: [deployWorker] }); // kill ourselves last
return gitHookPipeline.build();
};