forked from openfga/openfga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yaml
162 lines (138 loc) · 4.08 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
project_name: openfga
before:
hooks:
- make install-tools
- go generate ./...
builds:
-
main: ./cmd/openfga
binary: openfga
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ldflags:
- "-s -w"
- "-X github.com/openfga/openfga/internal/build.Version=v{{ .Version }}"
- "-X github.com/openfga/openfga/internal/build.Commit={{.Commit}}"
- "-X github.com/openfga/openfga/internal/build.Date={{.Date}}"
dockers:
- goos: linux
goarch: amd64
dockerfile: Dockerfile.goreleaser
image_templates:
- "openfga/openfga:latest-amd64"
- "openfga/openfga:{{ .Tag }}-amd64"
- "openfga/openfga:v{{ .Version }}-amd64"
- "openfga/openfga:v{{ .Major }}-amd64"
- "openfga/openfga:v{{ .Major }}.{{ .Minor }}-amd64"
- "openfga/openfga:v{{ .Major }}.{{ .Minor }}.{{ .Patch }}-amd64"
use: buildx
build_flag_templates:
- "--platform=linux/amd64"
extra_files:
- assets
- goos: linux
goarch: arm64
dockerfile: Dockerfile.goreleaser
image_templates:
- "openfga/openfga:latest-arm64"
- "openfga/openfga:{{ .Tag }}-arm64"
- "openfga/openfga:v{{ .Version }}-arm64"
- "openfga/openfga:v{{ .Major }}-arm64"
- "openfga/openfga:v{{ .Major }}.{{ .Minor }}-arm64"
- "openfga/openfga:v{{ .Major }}.{{ .Minor }}.{{ .Patch }}-arm64"
use: buildx
build_flag_templates:
- "--platform=linux/arm64"
extra_files:
- assets
docker_manifests:
- name_template: openfga/openfga:latest
image_templates:
- openfga/openfga:latest-amd64
- openfga/openfga:latest-arm64
- name_template: openfga/openfga:v{{ .Version }}
image_templates:
- openfga/openfga:v{{ .Version }}-amd64
- openfga/openfga:v{{ .Version }}-arm64
- name_template: openfga/openfga:v{{ .Major }}
image_templates:
- openfga/openfga:v{{ .Major }}-amd64
- openfga/openfga:v{{ .Major }}-arm64
- name_template: openfga/openfga:v{{ .Major }}.{{ .Minor }}
image_templates:
- openfga/openfga:v{{ .Major }}.{{ .Minor }}-amd64
- openfga/openfga:v{{ .Major }}.{{ .Minor }}-arm64
- name_template: openfga/openfga:v{{ .Major }}.{{ .Minor }}.{{ .Patch }}
image_templates:
- openfga/openfga:v{{ .Major }}.{{ .Minor }}.{{ .Patch }}-amd64
- openfga/openfga:v{{ .Major }}.{{ .Minor }}.{{ .Patch }}-arm64
release:
github:
owner: openfga
name: openfga
sboms:
- artifacts: archive
signs:
- cmd: cosign
env:
- COSIGN_EXPERIMENTAL=1
certificate: '${artifact}.pem'
args:
- sign-blob
- '--output-certificate=${certificate}'
- '--output-signature=${signature}'
- '${artifact}'
- "--yes" # needed on cosign 2.0.0+
artifacts: checksum
output: true
docker_signs:
- cmd: cosign
env:
- COSIGN_EXPERIMENTAL=1
artifacts: manifests
output: true
args:
- 'sign'
- '${artifact}'
- "--yes" # needed on cosign 2.0.0+
brews:
- repository:
owner: openfga
name: homebrew-tap
homepage: "https://openfga.dev/"
description: "A high performance and flexible authorization/permission engine built for developers and inspired by Google Zanzibar."
license: "Apache-2.0"
folder: "Formula"
url_template: "https://github.com/openfga/openfga/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
download_strategy: CurlDownloadStrategy
# update the head formula on each release
custom_block: |
head "https://github.com/openfga/openfga.git", :branch => "main"
dependencies:
- name: go
type: optional
- name: git
install: |
bin.install "openfga"
bash_completion.install "completions/openfga.bash" => "goreleaser"
zsh_completion.install "completions/openfga.zsh" => "_goreleaser"
fish_completion.install "completions/openfga.fish"
test: |
system "#{bin}/openfga version"
archives:
- files:
- assets
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'