cli/pkg/updater/.goreleaser.yaml

42 lines
969 B
YAML
Raw Normal View History

# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
builds:
- main: ./cmd/updater
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
archives:
- format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
- name: updater
tap:
owner: your-username
name: homebrew-tap
commit_author:
name: goreleaserbot
email: goreleaser@example.com
homepage: "https://github.com/your-username/updater"
description: "A demo CLI for the updater"
license: "MIT"