ci: Add error handling for git pull failures

This commit is contained in:
Rodrigo Rodriguez 2026-04-30 21:39:55 -03:00
parent 7fcfb184e5
commit 70924fe247

View file

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