CI: Simplify git pull in workflow
Some checks failed
BotServer CI / build (push) Failing after 1s

- Remove error handling wrapper
- Direct git pull command
- Let CI fail naturally on conflicts
This commit is contained in:
Rodrigo Rodriguez 2026-04-30 22:46:27 -03:00
parent 83d318de4d
commit ed0cb3bce6

View file

@ -17,11 +17,7 @@ steps:
- name: Setup
run: |
cd /opt/gbo/work/generalbots
if ! git pull; then
echo "::error::Git pull failed. Please resolve conflicts manually."
exit 1
fi
git log --oneline -1
git pull
- name: Build BotServer and BotUI
run: |