-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GoReleaser config and build for multi arch binaries
- Loading branch information
Martin Schneppenheim
committed
May 29, 2022
1 parent
b71e21f
commit 52a26f9
Showing
2 changed files
with
39 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,36 @@ | ||
release: | ||
name_template: '{{.Version}} / {{time "2006-01-02"}}' | ||
|
||
prerelease: auto | ||
mode: append | ||
footer: | | ||
## Docker Image | ||
Use the following command to pull this release's Docker image: | ||
```sh | ||
docker pull vectorizedio/kminion:{{ .Tag }} | ||
``` | ||
changelog: | ||
skip: false | ||
skip: false | ||
use: github | ||
filters: | ||
# Commit messages matching the regexp listed here will be removed from the changelog | ||
exclude: | ||
- - '^docs:' | ||
- '^test:' | ||
- '^npm:' | ||
- '^go.mod:' | ||
- '^.github:' | ||
- 'Merge branch' | ||
|
||
builds: | ||
- id: kminion | ||
binary: kminion | ||
goos: | ||
- darwin | ||
- linux | ||
- windows | ||
goarch: amd64 | ||
ldflags: | ||
- -s -w -X main.version={{.Version}} -X main.builtAt={{.Date}} -X main.commit={{.Commit}} | ||
|
||
checksum: | ||
name_template: 'checksums.txt' |