forked from jpillora/chisel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgoreleaser.yml
41 lines (41 loc) · 1.22 KB
/
goreleaser.yml
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
# test this goreleaser config with:
# - cd chisel
# - goreleaser --clean --snapshot --config goreleaser.yml
version: 2
project_name: chisel
before:
hooks:
- go mod tidy
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
ldflags:
- -s -w -X github.com/outsystems/chisel/share.BuildVersion={{.Version}}
flags:
- -trimpath
goos:
- linux
dockers:
- image_templates:
- "ghcr.io/outsystems/{{ .ProjectName }}:{{ .Version }}"
- "ghcr.io/outsystems/{{ .ProjectName }}:latest"
build_flag_templates:
- --platform=linux/amd64
- --label=org.opencontainers.image.title=OutSystems Chisel
- --label=org.opencontainers.image.description=OutSystems Chisel
- --label=org.opencontainers.image.url=https://github.com/outsystems/chisel
- --label=org.opencontainers.image.source=https://github.com/outsystems/chisel
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.created={{ .Date }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"