-
Notifications
You must be signed in to change notification settings - Fork 58
/
.goreleaser.yml
52 lines (44 loc) · 946 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
49
50
51
52
version: 2
project_name: falcoctl
before:
hooks:
- go mod tidy
builds:
- id: "falcoctl"
goos:
- linux
- darwin
- windows
goarch:
- amd64
- 386
- arm64
ignore:
- goos: darwin
goarch: 386
- goos: windows
goarch: 386
ldflags: |
-X github.com/falcosecurity/falcoctl/cmd/version.buildDate={{ .Date }}
-X github.com/falcosecurity/falcoctl/cmd/version.gitCommit={{ .Commit }}
-X github.com/falcosecurity/falcoctl/cmd/version.semVersion={{ if .IsSnapshot }}{{ .Commit }}{{ else }}{{ .Version }}{{ end }}
-s
-w
main: .
env:
- GO111MODULE=on
- CGO_ENABLED=0
archives:
- id: windows
format_overrides:
- goos: windows
format: zip
snapshot:
name_template: "{{ .ShortCommit }}"
release:
prerelease: auto
mode: replace
changelog:
use: github-native
git:
tag_sort: -version:creatordate