ci: remove submodule reference, fix health check port to 5858

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-04-28 22:05:23 -03:00
parent 5d9b1ebf80
commit 97e5db5b11

View file

@ -23,7 +23,6 @@ jobs:
run: |
cd /opt/gbo/work/generalbots
git pull
git submodule update --init --recursive
git ls-files -z | xargs -0 touch -d "@$(git log -1 --format='%ct')"
git log --oneline -1
@ -60,5 +59,5 @@ jobs:
sleep 10
ssh -i /home/gbuser/.ssh/id_ed25519 -o StrictHostKeyChecking=no \
gbuser@system \
"curl -sf http://localhost:8080/health && echo 'BotServer OK' || echo 'BotServer FAILED'; \
"curl -sf http://localhost:5858/api/health && echo 'BotServer OK' || echo 'BotServer FAILED'; \
curl -sf http://localhost:3000/ && echo 'BotUI OK' || echo 'BotUI FAILED'"