570c162c13
Add the `goreleaser` tool to the repository to handle building and publishing the application. Add a simple configuration file to build the application for all major OS versions. Update the Makefile to include commands to build release and snapshot versions of the tool. Add a placeholder CHANGELOG file to be included in the package files.
35 lines
642 B
YAML
35 lines
642 B
YAML
# This is an example goreleaser.yaml file with some sane defaults.
|
|
# Make sure to check the documentation at http://goreleaser.com
|
|
before:
|
|
hooks:
|
|
# You may remove this if you don't use go modules.
|
|
- go mod download
|
|
# you may remove this if you don't need go generate
|
|
- go generate ./...
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- linux
|
|
- windows
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- "386"
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- "6"
|
|
- "7"
|
|
|
|
archives:
|
|
-
|
|
files:
|
|
- LICENSE
|
|
- README.md
|
|
- CHANGELOG.md
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
changelog:
|
|
skip: true
|