-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
58 lines (53 loc) · 1.51 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
env:
- GO111MODULE=on
builds:
- id: sonarqube-prometheus-exporter
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- amd64
- arm
- arm64
mod_timestamp: '{{ .CommitTimestamp }}'
flags:
- -trimpath
ldflags:
- -s -w -X main.version={{.Version}} -X main.gitRevision={{.Commit}} -X main.buildDate={{ .CommitDate }}
checksum:
name_template: '{{ .ProjectName }}_checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- Merge pull request
- Merge branch
- go mod tidy
# .goreleaser.yml
dockers:
# You can have multiple Docker images.
-
ids:
- sonarqube-prometheus-exporter
# GOOS of the built binaries/packages that should be used.
goos: linux
# GOARCH of the built binaries/packages that should be used.
goarch: amd64
# GOARM of the built binaries/packages that should be used.
goarm: ''
# Templates of the Docker image names.
image_templates:
- "ghcr.io/avarabyeu/sonarqube-prometheus-exporter:latest"
- "ghcr.io/avarabyeu/sonarqube-prometheus-exporter:{{ .Tag }}"
# Skips the docker push. Could be useful if you also do draft releases.
# If set to auto, the release will not be pushed to the docker repository
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
# Defaults to false.
skip_push: false
# Path to the Dockerfile (from the project root).
dockerfile: release.dockerfile
use_buildx: false