1
version: 2
2
3
builds:
4
- main: ./cmd/webhook
5
env:
6
- CGO_ENABLED=0
7
flags:
8
- -trimpath # removes all file system paths from the compiled executable
9
goos:
10
- linux
11
- darwin
12
goarch:
13
- amd64
14
- arm64
15
16
checksum:
17
name_template: "{{ .ProjectName }}_v{{ .Version }}_checksums.txt"
18
algorithm: sha256
19
20
snapshot:
21
name_template: "{{ .ProjectName }}_v{{ .Version }}"
22
23
changelog:
24
sort: asc
25
26
dockers:
27
- dockerfile: Dockerfile
28
image_templates:
29
- "ghcr.io/contaimlabs/external-dns-bunny-webhook:latest"
30
- "ghcr.io/contaimlabs/external-dns-bunny-webhook:{{ .Tag }}"
31
32
release:
33
github:
34
owner: contaimlabs
35
name: external-dns-bunny-webhook
36