netmaker/.goreleaser.prerelease.yaml
Christopher Blaha c4b36ac791
Net 792 remove freebsd (#2735)
* remove freebsd

* undo quick script changes

* Update nm-quick.sh

---------

Co-authored-by: Abhishek K <32607604+abhishek9686@users.noreply.github.com>
2024-01-16 20:19:08 +05:30

34 lines
647 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
- windows_amd64
binary: 'nmctl'
archives:
- format: binary
name_template: '{{ .Binary }}-{{ .Os }}-{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}-{{ . }}{{ end }}'
release:
prerelease: true