From 96209bd8a57d93c9a5ade5486802efe405794188 Mon Sep 17 00:00:00 2001 From: mleku Date: Thu, 25 Dec 2025 11:34:20 +0100 Subject: [PATCH] Fix release deploy to use correct binary path (v0.36.20) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- .claude/commands/release.md | 2 +- pkg/version/version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.claude/commands/release.md b/.claude/commands/release.md index 6667de5..98e4141 100644 --- a/.claude/commands/release.md +++ b/.claude/commands/release.md @@ -50,7 +50,7 @@ If no argument provided, default to `patch`. 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 diff --git a/pkg/version/version b/pkg/version/version index 3dbc46c..2ff60e2 100644 --- a/pkg/version/version +++ b/pkg/version/version @@ -1 +1 @@ -v0.36.19 +v0.36.20