Fix release deploy to use correct binary path (v0.36.20)
Some checks failed
Go / build-and-release (push) Has been cancelled

- Update deploy command to build to ~/.local/bin/next.orly.dev
- Service uses this path, not ./orly in project directory

Files modified:
- .claude/commands/release.md: Fixed binary output path for VPS deploy

🤖 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-25 11:34:20 +01:00
parent da6008a00e
commit 96209bd8a5
2 changed files with 2 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ If no argument provided, default to `patch`.
11. **Deploy to VPS** by running: 11. **Deploy to VPS** by running:
``` ```
ssh 10.0.0.1 'cd ~/src/next.orly.dev && git stash && git pull origin main && export PATH=$PATH:~/go/bin && CGO_ENABLED=0 go build -o orly && sudo systemctl restart orly && ./orly version' ssh 10.0.0.1 'cd ~/src/next.orly.dev && git stash && git pull origin main && export PATH=$PATH:~/go/bin && CGO_ENABLED=0 go build -o ~/.local/bin/next.orly.dev && sudo systemctl restart orly && ~/.local/bin/next.orly.dev version'
``` ```
12. **Report completion** with the new version and commit hash 12. **Report completion** with the new version and commit hash

View File

@@ -1 +1 @@
v0.36.19 v0.36.20