-
Notifications
You must be signed in to change notification settings - Fork 43
/
.goreleaser.yml
48 lines (48 loc) · 957 Bytes
/
.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
before:
hooks:
- go mod download
- go mod verify
builds:
- main: ./cmd/ltagent
id: "ltagent"
binary: bin/ltagent
goos:
- linux
goarch:
- amd64
flags:
- -mod=readonly
- -trimpath
env:
- CGO_ENABLED=0
- main: ./cmd/ltapi
id: "ltapi"
binary: bin/ltapi
goos:
- linux
goarch:
- amd64
flags:
- -mod=readonly
- -trimpath
env:
- CGO_ENABLED=0
archives:
-
name_template: "{{ .ProjectName }}-v{{ .Version }}-{{ .Os }}-{{ .Arch }}"
wrap_in_directory: true
format: tar.gz
files:
- LICENSE.txt
- config/config.sample.json
- config/coordinator.sample.json
- config/simplecontroller.sample.json
- config/simulcontroller.sample.json
changelog:
sort: desc
release:
github:
owner: mattermost
name: mattermost-load-test-ng
name_template: "{{ .ProjectName }}-v{{ .Version }}"
disable: false