From ce78abdceb6d3f241d26b08a8f3b369cec800669 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Fri, 18 Apr 2025 23:48:26 -0300 Subject: [PATCH] fix(workflow): update node.yaml to run npm start in the background --- .forgejo/workflows/node.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/node.yaml b/.forgejo/workflows/node.yaml index 3dbf03a5..7a7cca53 100644 --- a/.forgejo/workflows/node.yaml +++ b/.forgejo/workflows/node.yaml @@ -38,7 +38,7 @@ jobs: cd /opt/gbo/bin/BotServer/packages/default.gbui npm install npm run build - + - name: Restart Bots Deployer run: | echo "[General Bots Deployer] Restarting..." @@ -47,4 +47,4 @@ jobs: pkill -f "node ./boot.mjs" || true - npm run start + nohup npm run start > /dev/null 2>&1 & \ No newline at end of file