0f1426a2d0
- Check for uncommitted changes (both staged and unstaged) - Auto-stash with timestamp before pulling - Prevents "Your local changes would be overwritten" errors - Commented-out option to reapply stash after pull if needed Server changes are preserved in git stash for recovery if needed. Fixes: "error: Your local changes to the following files would be overwritten by merge"
GitHub Actions Workflows
deploy.yml - Automated Deployment
Trigger: Push to main branch or manual dispatch
What it does:
- SSH into your server
git pull origin mainsudo systemctl restart cv-server- Verify deployment via health check
Required GitHub Secrets:
SSH_PRIVATE_KEY- SSH private key for server accessSSH_HOST- Server IP or domainSSH_USER- SSH username
Optional GitHub Secrets:
SSH_PORT(default:22)SERVICE_NAME(default:cv-server)REPO_PATH(default:/opt/cv-server)
Manual deployment: Go to Actions → Deploy CV Server → Run workflow
Setup guide: See GITHUB-ACTION-SETUP.md