feat: add release pipeline — GoReleaser + GitHub Actions + Homebrew Tap#5
Merged
Conversation
Add automated release pipeline so pushing a semver tag (e.g. v0.1.0) triggers cross-platform binary builds published to GitHub Releases with automatic Homebrew formula updates. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Owner
Author
Tech Lead Review: Pass ✓Verdict: Ready to merge — clean implementation, all checks pass. Findings:
Audit:
Observations (non-blocking):
Setup required before first release:
Plan: station/Playbook/Plans/Active/04-release-pipeline.md |
9 tasks
LastStep
added a commit
that referenced
this pull request
May 8, 2026
…Bonsai-Eval shipped Plan 38 revised 2026-05-08 after rung-reuse research + inspect_swe trust audit: rungs 1+2 swap to inspect_swe drop-ins (Meridian Labs / JJ Allaire / UK AISI+Apollo); only rung-3 custom. Risk #1 RESOLVED, #5 mitigated, new #8 (pre-1.0 dep) added. Verifications split key-independent vs key-gated to unblock building before ANTHROPIC_API_KEY arrives. Codeburn flag drift fixed inline (P1.1). Bonsai-Eval P0+P1 key-independent slice shipped: 31 files, 27 tests, $0 cost, single commit on main, tagged v0.0.1-bootstrap. Independent reviewer = APPROVE WITH FOLLOW-UPS (B1 P0 + B2 P3 filed). INDEX.md gains external-repo row pointing at LastStep/Bonsai-Eval. memory.md adds 3 durable Notes (inspect_swe trust posture, leaderboard-substitute fallacy, Max OAuth gap). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add automated release pipeline using GoReleaser, GitHub Actions, and Homebrew Tap. Push a semver tag (e.g.,
v0.1.0) to trigger cross-platform binary builds published to GitHub Releases, with automatic Homebrew formula updates.Changes
cmd/root.go— add Version variable and SetVersion function for--versionflagmain.go— add version ldflags variable, wire to cmd.SetVersionMakefile— add ldflags for version injection in build/install targets.goreleaser.yaml— GoReleaser v2 config (6 platform targets, checksums, changelog, Homebrew formula).github/workflows/release.yml— GitHub Actions workflow triggered on semver tags.gitignore— add dist/ (GoReleaser output)Plan
station/Playbook/Plans/Active/04-release-pipeline.md
Verification
make build— passes./bonsai --version— prints "bonsai version dev"go test ./...— passes🤖 Generated with Claude Code