jwhited-wgsd/.goreleaser.yml

42 lines
595 B
YAML
Raw Normal View History

2020-11-24 14:31:08 -08:00
before:
hooks:
- go mod download
builds:
- id: coredns
main: ./cmd/coredns/main.go
binary: coredns
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- amd64
- 386
- arm
- arm64
- id: wgsd-client
main: ./cmd/wgsd-client/main.go
binary: wgsd-client
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
2020-11-24 14:31:08 -08:00
goarch:
- amd64
- 386
- arm
- arm64
archives:
- id: coredns
format: binary
builds:
- coredns
- id: wgsd-client
format: binary
builds:
- wgsd-client