Agent Skills: Goreleaser Setup

Set up goreleaser for Go release automation with cross-compilation and publishing.

UncategorizedID: a5c-ai/babysitter/goreleaser-setup

Install this agent skill to your local

pnpm dlx add-skill https://github.com/a5c-ai/babysitter/tree/HEAD/library/specializations/cli-mcp-development/skills/goreleaser-setup

Skill Files

Browse the full folder contents for goreleaser-setup.

Download Skill

Loading file tree…

library/specializations/cli-mcp-development/skills/goreleaser-setup/SKILL.md

Skill Metadata

Name
goreleaser-setup
Description
Set up goreleaser for Go release automation with cross-compilation and publishing.

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