From 83bd0f5b13695e23c15428eff1a67aa37efb5093 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 28 Mar 2025 08:45:50 -0300 Subject: [PATCH] fix(workflows): clean up node.yaml by removing unnecessary commented-out commands --- .forgejo/workflows/node.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/node.yaml b/.forgejo/workflows/node.yaml index b826f67d..ef06cd86 100644 --- a/.forgejo/workflows/node.yaml +++ b/.forgejo/workflows/node.yaml @@ -37,12 +37,12 @@ jobs: # echo "[General Bots Deployer] Building default.gbui..." # cd /opt/gbo/bin/BotServer/packages/default.gbui # npm install - # npm run build - + # 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 - # nohup npm run start > /dev/null 2>&1 & + + nohup npm run start > /dev/null 2>&1 &