fix(ci): use generalbots parent repo for UI sync path
Some checks failed
Botlib CI / build (push) Successful in 5s
BotServer CI / build (push) Failing after 0s
Bottest CI / build (push) Successful in 22s
BotUI CI / build (push) Successful in 13s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-04-23 22:18:05 +00:00
parent 01de744bcd
commit e8ef6c838f

View file

@ -29,4 +29,8 @@ jobs:
ssh -o StrictHostKeyChecking=no ${SYSTEM_USER}@${SYSTEM_HOST} "curl -sf http://localhost:8080/health && echo 'BotServer Deployed' || echo 'Failed'"
- name: Sync UI Files to Stage
run: |
rsync -az --delete -e "ssh -o StrictHostKeyChecking=no" /opt/gbo/work/botserver/botui/ui/ ${SYSTEM_USER}@${SYSTEM_HOST}:/opt/gbo/data/botui/ui/
cd /opt/gbo/work/generalbots
git reset --hard HEAD && git clean -fd
git pull
git submodule update --init --recursive
rsync -az --delete -e "ssh -o StrictHostKeyChecking=no" botui/ui/ ${SYSTEM_USER}@${SYSTEM_HOST}:/opt/gbo/data/botui/ui/