695447a4c2
Rename steps in the project makefile to follow a more consistent naming scheme. Add new gitlab CI step to check for unused dependencies.
31 lines
482 B
YAML
31 lines
482 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:
|
|
- make go/dependencies
|
|
builds:
|
|
-
|
|
dir: src
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- "386"
|
|
- arm
|
|
- arm64
|
|
goarm:
|
|
- "6"
|
|
- "7"
|
|
|
|
archives:
|
|
-
|
|
files:
|
|
- LICENSE
|
|
- README.md
|
|
- CHANGELOG.md
|
|
checksum:
|
|
name_template: 'checksums.txt'
|
|
changelog:
|
|
skip: true
|