This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.goreleaser.yaml
71 lines (63 loc) · 1.73 KB
/
.goreleaser.yaml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
before:
hooks:
- go mod tidy
- go generate ./...
dist: release
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- 386
- arm
- arm64
- amd64
ldflags:
- -s -w -X main.version={{.Version}}
dockers:
- goos: linux
dockerfile: DockerfileGoreleaser
image_templates:
- thomaspoignant/{{.ProjectName}}:latest
- thomaspoignant/{{.ProjectName}}:{{ .Tag }}
- thomaspoignant/{{.ProjectName}}:v{{ .Major }}
- thomaspoignant/{{.ProjectName}}:v{{ .Major }}.{{ .Minor }}
brews:
- tap:
owner: thomaspoignant
name: homebrew-tap
caveats: "GO-feature-flag-relay-proxy is a proxy application to manage your feature flags."
homepage: "https://github.com/thomaspoignant/go-feature-flag-relay-proxy"
description: "GO-feature-flag-relay-proxy is a proxy application to manage your feature flags."
skip_upload: auto
scoop:
url_template: "https://github.com/thomaspoignant/go-feature-flag-relay-proxy/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
bucket:
owner: thomaspoignant
name: scoop
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
homepage: "https://github.com/thomaspoignant/go-feature-flag-relay-proxy"
description: "GO-feature-flag-relay-proxy is a proxy application to manage your feature flags."
license: MIT
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^testdata:'
- '^.github'