scorecard/.goreleaser.yml

38 lines
1008 B
YAML
Raw Normal View History

2021-02-17 23:21:27 +03:00
before:
hooks:
# You may remove this if you don't use go modules.
- go mod download
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
# List of combinations of GOOS + GOARCH + GOARM to ignore.
2021-02-17 23:21:27 +03:00
# Default is empty.
ignore:
- goos: darwin
goarch: 386
# CI should set VERSION_LDFLAGS to the output of ./scripts/version_ldflags
ldflags:
- -s -w {{.Env.VERSION_LDFLAGS}}
2021-02-17 23:21:27 +03:00
archives:
- replacements:
linux: Linux
386: i386
amd64: x86_64
2021-02-17 23:21:27 +03:00
checksum:
# Algorithm to be used.
# Accepted options are sha256, sha512, sha1, crc32, md5, sha224 and sha384.
# Default is sha256.
algorithm: sha512
changelog:
# Set it to true if you wish to skip the changelog generation.
# This may result in an empty release notes on GitHub/GitLab/Gitea.
skip: true
2021-02-17 23:21:27 +03:00
signs:
- artifacts: checksum
args: ["--batch", "-u", "{{ .Env.GPG_FINGERPRINT }}", "--output", "${signature}", "--detach-sign", "${artifact}"]