This repository has been archived by the owner on Dec 5, 2020. It is now read-only.
forked from ticketmaster/googleanalytics_exporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
101 lines (101 loc) · 3.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
project_name: ganalytics
env:
- GO111MODULE=on
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- 386
- amd64
- arm
- arm64
ignore:
- goos: darwin
goarch: 386
checksum:
name_template: '{{ .ProjectName }}_checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- Merge pull request
- Merge branch
dockers:
- image_templates:
- 'docker.pkg.github.com/xplorfin/googleanalytics_exporter/googleanalytics_exporter:{{ .Tag }}'
- 'docker.pkg.github.com/xplorfin/googleanalytics_exporter/googleanalytics_exporter:v{{ .Major }}.{{ .Minor }}'
- 'docker.pkg.github.com/xplorfin/googleanalytics_exporter/googleanalytics_exporter:latest'
dockerfile: Dockerfile
binaries:
- ganalytics
goos: linux
goarch: amd64
goarm: ''
build_flag_templates:
- "--pull"
- "--label=org.opencontainers.image.created={{.Date}}"
- "--label=org.opencontainers.image.name={{.ProjectName}}"
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
- "--label=org.opencontainers.image.version={{.Version}}"
- "--label=org.opencontainers.image.source={{.GitURL}}"
- "--label=com.github.actions.name={{.ProjectName}}"
- "--label=com.github.actions.description=Prometheus Google Annalytics Exporter"
- "--label=com.github.actions.icon=terminal"
- "--label=com.github.actions.color=blue"
- "--label=repository=http://github.com/ganalytics/ganalytics"
archives:
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip
brews:
- github:
owner: xplorfin
name: homebrewtap-oss
folder: Formula
homepage: https://github.com/xplorfin/googleanalytics_exporter
description: Prometheus Google Analytics Exporter
test: |
system "#{bin}/ganalytics -v"
scoop:
bucket:
owner: xplorfin
name: scoop-bucket-oss
homepage: https://github.com/xplorfin/googleanalytics_exporter
description: Prometheus Google Analytics Exporter
license: MIT
nfpms:
- name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
homepage: https://ganalytics.com
description: Prometheus Google Analytics Exporter
maintainer: Carlos Alexandro Becker <[email protected]>
license: MIT
vendor: GoReleaser
formats:
- deb
- rpm
dependencies:
- git
# TODO: ATTENTION: Currently, the provided docker image does not support the generation of snapcraft packages. @goreleaser
#snapcrafts:
# - name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
# summary: Deliver Go binaries as fast and easily as possible
# description: Prometheus Google Analytics Exporter
# grade: stable
# confinement: classic
# publish: true