forked from flipt-io/flipt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
57 lines (50 loc) · 1.21 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
57
snapshot:
name_template: "{{ .ShortCommit }}-snapshot"
builds:
- main: ./cmd/flipt/.
env:
- CGO_ENABLED=1
ldflags:
- -s -w -X main.version={{ .Version }} -X main.commit={{ .Commit }} -X main.date={{ .Date }}
- -linkmode external -extldflags -static
goos:
- linux
goarch:
- amd64
flags:
- -tags=assets
- -trimpath
sboms:
- artifacts: archive
archives:
- id: main
replacements:
amd64: x86_64
files:
- LICENSE
- README.md
- CHANGELOG.md
- ./config/migrations/
- ./config/default.yml
checksum:
name_template: "checksums.txt"
changelog:
use: github-native
dockers:
- dockerfile: ./build/Dockerfile
use: buildx
image_templates:
- "lilfrou/flipt:latest"
- "lilfrou/flip:{{ .Tag }}"
- "ghcr.io/lilfrou/flipt:latest"
- "ghcr.io/lilfrou/flipt:{{ .Tag }}"
build_flag_templates:
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
extra_files:
- config/migrations/
- config/default.yml
announce:
discord:
enabled: false