mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
35 lines
571 B
YAML
35 lines
571 B
YAML
|
release:
|
||
|
prerelease: auto
|
||
|
name_template: "{{.ProjectName}} v{{.Version}}"
|
||
|
|
||
|
builds:
|
||
|
- env:
|
||
|
- CGO_ENABLED=0
|
||
|
goos:
|
||
|
- freebsd
|
||
|
- windows
|
||
|
- darwin
|
||
|
- linux
|
||
|
- dragonfly
|
||
|
- netbsd
|
||
|
- openbsd
|
||
|
goarch:
|
||
|
- amd64
|
||
|
- arm
|
||
|
- arm64
|
||
|
- 386
|
||
|
ldflags:
|
||
|
- -s -w -X main.githash={{.ShortCommit}}
|
||
|
|
||
|
archive:
|
||
|
name_template: "{{ .Binary }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
|
||
|
format: binary
|
||
|
files:
|
||
|
- none*
|
||
|
replacements:
|
||
|
386: 32bit
|
||
|
amd64: 64bit
|
||
|
|
||
|
checksum:
|
||
|
name_template: 'checksums.txt'
|