-
Notifications
You must be signed in to change notification settings - Fork 5
/
.goreleaser.yaml
37 lines (37 loc) · 1.16 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
# test this goreleaser config with:
# - cd cloud-connector
# - goreleaser --clean --snapshot --config .goreleaser.yml
version: 2
project_name: outsystemscc
before:
hooks:
- go mod tidy
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
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 Cloud Connector
- --label=org.opencontainers.image.description=OutSystems Cloud Connector
- --label=org.opencontainers.image.url=https://github.com/outsystems/cloud-connector
- --label=org.opencontainers.image.source=https://github.com/outsystems/cloud-connector
- --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:'