netmaker/.goreleaser.prerelease.yaml
2023-02-25 08:03:16 -05:00

35 lines
669 B
YAML

before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
- main: ./
env:
- CGO_ENABLED=1
ldflags:
- -s -w
targets:
- linux_amd64
binary: '{{ .ProjectName }}'
- main: ./cli
id: 'nmctl'
env:
- CGO_ENABLED=0
ldflags:
- -s -w
targets:
- linux_amd64
- linux_arm64
- darwin_amd64
- darwin_arm64
- freebsd_amd64
- windows_amd64
binary: 'nmctl'
archives:
- format: binary
name_template: '{{ .Binary }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}'
release:
prerelease: true