Add VPS auto-deploy step to release command (v0.36.5)
Some checks failed
Go / build-and-release (push) Has been cancelled

- Add step 10 to /release command that SSHes to VPS (10.0.0.1) and
  runs deployment: git stash, git pull, rebuild web UI, restart service
- Enables one-command releases with automatic production deployment

Files modified:
- .claude/commands/release.md: Add VPS deployment step
- pkg/version/version: Bump to v0.36.5

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-17 14:19:44 +01:00
parent 358c8bc931
commit 554358ce81
3 changed files with 12 additions and 3 deletions

View File

@@ -42,7 +42,12 @@ If no argument provided, default to `patch`.
git push gitea main --tags
```
10. **Report completion** with the new version and commit hash
10. **Deploy to VPS** by running:
```
ssh 10.0.0.1 'cd ~/src/next.orly.dev/;git stash;git pull origin main;./scripts/update-embedded-web.sh;sudo systemctl restart orly'
```
11. **Report completion** with the new version and commit hash
## Important:
- Do NOT push to github remote (only origin and gitea)