feat(install): add go install, Homebrew, and GitHub Releases channels (#20)#32
Merged
Merged
Conversation
…#20) - Add debug.ReadBuildInfo fallback in internal/version so `go install` builds report the module version instead of "dev" - Add brews block to .goreleaser.yaml pointing at brickhouse-tech/homebrew-tap; tap is auto-updated on every tagged release - Document all four install channels in README (npm, go install, Homebrew, GitHub Releases); removes deprecated standalone curl section Closes #20 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…ples (#19) - Delete src/sh/sync-agents.sh — bash implementation removed - bin/sync-agents.js: remove fallback branch; unsupported triples now exit 1 with a clear message pointing to go install / brew / GitHub Releases - package.json: drop lint (shellcheck), test:sh, concurrently devDep; test script delegates to make test; files array no longer includes src/**/* - Makefile test target: remove SYNC_AGENTS_BIN=bin/sync-agents prefix - test/sync-agents.bats: resolve Go binary by default (bin/sync-agents) instead of the bash script; SYNC_AGENTS_BIN override kept for CI flexibility Closes #19 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
4 tasks
…impl feat(remove-bash): drop bash fallback, fail loudly on unsupported triples (#19)
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
go install:debug.ReadBuildInfofallback ininternal/version/version.go—go installbuilds now report the module proxy version instead of"dev". ldflags builds (goreleaser, npm) are unaffected (init() early-returns whenVersion != "dev").brews:block added to.goreleaser.yamltargetingbrickhouse-tech/homebrew-tap. Tap auto-updates on every tagged release. (Tap repo needs to be created once:gh repo create brickhouse-tech/homebrew-tap --public.)Test plan
go build ./...passes (verified locally)go install github.com/brickhouse-tech/sync-agents@latestreports correct semver from--versionbrickhouse-tech/homebrew-tapformula automatically (requires tap repo to exist)Closes #20
🤖 Generated with Claude Code