jwhited-wgsd/.goreleaser.yml
Jordan Whited f6140018d7
goreleaser tweaks (#49)
Signed-off-by: Jordan Whited <jordan@jordanwhited.com>
2022-12-18 15:16:43 -08:00

42 lines
595 B
YAML

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
goarch:
- amd64
- 386
- arm
- arm64
archives:
- id: coredns
format: binary
builds:
- coredns
- id: wgsd-client
format: binary
builds:
- wgsd-client