From e7241cde67a8f09a522cea2d5e7494803dab90fe Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 28 Mar 2025 09:20:12 -0300 Subject: [PATCH] fix(workflows): clean up node.yaml by removing unnecessary commented-out commands --- .forgejo/workflows/node.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/node.yaml b/.forgejo/workflows/node.yaml index 07623410..0799e8f2 100644 --- a/.forgejo/workflows/node.yaml +++ b/.forgejo/workflows/node.yaml @@ -38,10 +38,13 @@ jobs: # cd /opt/gbo/bin/BotServer/packages/default.gbui # npm install # npm run build + - name: Restart Bots Deployer run: | echo "[General Bots Deployer] Restarting..." + cd /opt/gbo/bin/BotServer + pkill -f "node ./boot.mjs" || true - npm run start + npm run start &