Babysitter goreleaser-setup
Set up goreleaser for Go release automation with cross-compilation and publishing.
install
source · Clone the upstream repo
git clone https://github.com/a5c-ai/babysitter
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/a5c-ai/babysitter "$T" && mkdir -p ~/.claude/skills && cp -r "$T/library/specializations/cli-mcp-development/skills/goreleaser-setup" ~/.claude/skills/a5c-ai-babysitter-goreleaser-setup && rm -rf "$T"
manifest:
library/specializations/cli-mcp-development/skills/goreleaser-setup/SKILL.mdsource content
Goreleaser Setup
Set up goreleaser for Go release automation.
Generated Patterns
# .goreleaser.yaml version: 2 builds: - env: [CGO_ENABLED=0] goos: [linux, windows, darwin] goarch: [amd64, arm64] ldflags: - -s -w -X main.version={{.Version}} archives: - format: tar.gz format_overrides: - goos: windows format: zip checksum: name_template: 'checksums.txt' changelog: sort: asc filters: exclude: ['^docs:', '^test:', '^chore:'] brews: - repository: owner: myuser name: homebrew-tap homepage: https://github.com/myuser/myapp description: My CLI application
Target Processes
- cli-binary-distribution
- package-manager-publishing