-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
42 lines (42 loc) · 1.01 KB
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# For details, see the GoReleaser documentation at http://goreleaser.com
project_name: synse-snmp-base
before:
hooks:
- go mod download
builds:
- env:
- CGO_ENABLED=0
ldflags:
- -w
- -X github.com/vapor-ware/synse-sdk/sdk.BuildDate={{ .Date }}
- -X github.com/vapor-ware/synse-sdk/sdk.GitCommit={{ .ShortCommit }}
- -X github.com/vapor-ware/synse-sdk/sdk.GitTag={{ .Tag }}
- -X github.com/vapor-ware/synse-sdk/sdk.GoVersion={{ .Env.GOLANG_VERSION }}
- -X github.com/vapor-ware/synse-sdk/sdk.PluginVersion={{ .Version }}
goos:
- linux
goarch:
- amd64
archives:
- format: tar.gz
checksum:
name_template: 'checksums-{{ .Tag }}.txt'
release:
github:
owner: vapor-ware
name: synse-snmp-base
draft: false
prerelease: auto
name_template: "{{ .Version }}"
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^wip:'
- '^deps:'
- '^bump:'
- '^typo:'