-
-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy path.goreleaser.yml
More file actions
111 lines (99 loc) · 2.54 KB
/
.goreleaser.yml
File metadata and controls
111 lines (99 loc) · 2.54 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json
version: 2
project_name: flipt
git:
tag_sort: semver
monorepo:
tag_prefix: v
builds:
- builder: prebuilt
goos:
- linux
- darwin
goarch:
- amd64
- arm64
goamd64:
- v1
goarm64:
- v8.0
prebuilt:
path: tmp/dist/flipt_{{ .Os }}_{{ .Arch }}{{ with .Amd64 }}_{{ . }}{{ end }}{{ with .Arm64 }}_{{ . }}{{ end }}/flipt
binary: flipt
sboms:
- artifacts: archive
archives:
- id: main
name_template: >-
{{ .ProjectName }}_
{{- tolower .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else }}{{ .Arch }}{{ end }}
files:
- LICENSE
checksum:
name_template: "checksums.txt"
release:
prerelease: auto # enable rc releases (e.g. v1.0.0-rc.1)
target_commitish: "{{ .Commit }}"
footer: |
## Installation
### Docker Images :whale:
```bash
docker pull docker.flipt.io/flipt/flipt:v{{ .Tag }}
```
```bash
docker pull ghcr.io/flipt-io/flipt:v{{ .Tag }}
```
## Thank you!
We hope you :heart: this release! Feel free to open issues/discussions or reach out to us on Discord if you have any questions or feedback.
- [Discord](https://flipt.io/discord)
- [Github Discussions](https://github.com/flipt-io/flipt/discussions)
- [Github Issues](https://github.com/flipt-io/flipt/issues)
- [Website](https://flipt.io)
changelog:
use: github
format: "{{.SHA}}: {{.Message}} (@{{.AuthorUsername}})"
sort: asc
groups:
- title: "Features"
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: "Bug Fixes"
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: "Dependencies"
regexp: '^.*?deps(\([[:word:]]+\))??!?:.+$'
order: 999
- title: "Other"
order: 3
dockers_v2:
- dockerfile: ./build/Dockerfile
images:
- "flipt/flipt"
- "ghcr.io/flipt-io/flipt"
tags:
- "v{{ .Tag }}"
- "v{{ .Major }}"
platforms:
- linux/amd64
- linux/arm64
labels:
"org.opencontainers.image.created": "{{.Date}}"
"org.opencontainers.image.revision": "{{.FullCommit}}"
"org.opencontainers.image.version": "{{.Version}}"
announce:
discord:
enabled: true
homebrew_casks:
- name: flipt@2
homepage: https://flipt.io
description: A Git-first, CloudNative feature management solution
directory: Casks
skip_upload: auto
binaries:
- flipt
repository:
owner: flipt-io
name: homebrew-brew
branch: main