-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
56 lines (56 loc) · 1.5 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# For details, see the GoReleaser documentation at http://goreleaser.com
project_name: synse-amt-plugin
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
- darwin
goarch:
- amd64
archives:
- format: tar.gz
checksum:
name_template: 'checksums-{{ .Tag }}.txt'
release:
github:
owner: vapor-ware
name: synse-amt-plugin
draft: false
prerelease: auto
name_template: "{{ .Version }}"
dockers:
-
goos: linux
goarch: amd64
image_templates:
- docker.io/vaporio/amt-plugin:{{ .Tag }}
- docker.io/vaporio/amt-plugin:{{ .Major }}
- docker.io/vaporio/amt-plugin:{{ .Major }}.{{ .Minor }}
- docker.io/vaporio/amt-plugin:latest
build_flag_templates:
- "--label=org.label-schema.version={{ .Version }}"
- "--label=org.label-schema.build-date={{ .Date }}"
- "--label=org.label-schema.vcs-ref={{ .ShortCommit }}"
extra_files:
- requirements.txt
- config.yml
- scripts
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'