1- # yaml-language-server: $schema=https://goreleaser.com/static/schema.json
1+ # yaml-language-server: $schema=https://goreleaser.com/static/schema-pro .json
22---
33version : 2
44git :
@@ -18,10 +18,6 @@ builds:
1818 goarch :
1919 - " amd64"
2020 - " arm64"
21- - " riscv64"
22- ignore :
23- - goos : " darwin"
24- goarch : " riscv64"
2521 mod_timestamp : " {{ .CommitTimestamp }}"
2622 ldflags :
2723 - " -s -w"
@@ -164,69 +160,40 @@ dockers:
164160 build_flag_templates :
165161 - " --platform=linux/arm64"
166162 - " --build-arg=BASE=cgr.dev/chainguard/busybox"
167- # RISCV64
168- - image_templates :
169- - &riscv64_image_quay "quay.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}-riscv64"
170- - &riscv64_image_gh "ghcr.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}-riscv64"
171- - &riscv64_image_dh "authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}-riscv64"
172- dockerfile : *dockerfile
173- goos : " linux"
174- goarch : " riscv64"
175- use : " buildx"
176- build_flag_templates :
177- - " --platform=linux/riscv64"
178- # RISCV64 (debug)
179- - image_templates :
180- - &riscv64_debug_image_quay "quay.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}-riscv64-debug"
181- - &riscv64_debug_image_gh "ghcr.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}-riscv64-debug"
182- - &riscv64_debug_image_dh "authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}-riscv64-debug"
183- dockerfile : *dockerfile
184- goos : " linux"
185- goarch : " riscv64"
186- use : " buildx"
187- build_flag_templates :
188- - " --platform=linux/riscv64"
189- - " --build-arg=BASE=cgr.dev/chainguard/busybox"
190163docker_manifests :
191164 # Quay
192165 - name_template : " quay.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}"
193- image_templates : [*amd_image_quay, *arm_image_quay, *riscv64_image_quay ]
166+ image_templates : [*amd_image_quay, *arm_image_quay]
194167 - name_template : " quay.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:latest"
195- image_templates : [*amd_image_quay, *arm_image_quay, *riscv64_image_quay ]
168+ image_templates : [*amd_image_quay, *arm_image_quay]
196169 # GitHub Registry
197170 - name_template : " ghcr.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}"
198- image_templates : [*amd_image_gh, *arm_image_gh, *riscv64_image_gh ]
171+ image_templates : [*amd_image_gh, *arm_image_gh]
199172 - name_template : " ghcr.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:latest"
200- image_templates : [*amd_image_gh, *arm_image_gh, *riscv64_image_gh ]
173+ image_templates : [*amd_image_gh, *arm_image_gh]
201174 # Docker Hub
202175 - name_template : " authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}"
203- image_templates : [*amd_image_dh, *arm_image_dh, *riscv64_image_dh ]
176+ image_templates : [*amd_image_dh, *arm_image_dh]
204177 - name_template : " authzed/spicedb{{ if .IsNightly }}-git{{ end }}:latest"
205- image_templates : [*amd_image_dh, *arm_image_dh, *riscv64_image_dh ]
178+ image_templates : [*amd_image_dh, *arm_image_dh]
206179
207180 # Debug Images:
208181
209182 # Quay (debug)
210183 - name_template : " quay.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}-debug"
211- image_templates :
212- [*amd_debug_image_quay, *arm_debug_image_quay, *riscv64_debug_image_quay]
184+ image_templates : [*amd_debug_image_quay, *arm_debug_image_quay]
213185 - name_template : " quay.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:latest-debug"
214- image_templates :
215- [*amd_debug_image_quay, *arm_debug_image_quay, *riscv64_debug_image_quay]
186+ image_templates : [*amd_debug_image_quay, *arm_debug_image_quay]
216187 # GitHub Registry
217188 - name_template : " ghcr.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}-debug"
218- image_templates :
219- [*amd_debug_image_gh, *arm_debug_image_gh, *riscv64_debug_image_gh]
189+ image_templates : [*amd_debug_image_gh, *arm_debug_image_gh]
220190 - name_template : " ghcr.io/authzed/spicedb{{ if .IsNightly }}-git{{ end }}:latest-debug"
221- image_templates :
222- [*amd_debug_image_gh, *arm_debug_image_gh, *riscv64_debug_image_gh]
191+ image_templates : [*amd_debug_image_gh, *arm_debug_image_gh]
223192 # Docker Hub
224193 - name_template : " authzed/spicedb{{ if .IsNightly }}-git{{ end }}:v{{ .Version }}-debug"
225- image_templates :
226- [*amd_debug_image_dh, *arm_debug_image_dh, *riscv64_debug_image_dh]
194+ image_templates : [*amd_debug_image_dh, *arm_debug_image_dh]
227195 - name_template : " authzed/spicedb{{ if .IsNightly }}-git{{ end }}:latest-debug"
228- image_templates :
229- [*amd_debug_image_dh, *arm_debug_image_dh, *riscv64_debug_image_dh]
196+ image_templates : [*amd_debug_image_dh, *arm_debug_image_dh]
230197checksum :
231198 name_template : " checksums.txt"
232199snapshot :
0 commit comments