-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
117 lines (109 loc) · 3.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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
---
version: 2
archives:
- name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
format_overrides:
- goos: windows
format: zip
files:
- README.adoc
- LICENSE
before:
hooks:
- go mod tidy
- go mod download
builds:
- id: udash
main: ./main.go
binary: udash
ldflags:
- -w -s
- -X "github.com/updatecli/udash/pkg/version.BuildTime={{.Date}}"
- -X "github.com/updatecli/udash/pkg/version.GoVersion={{.Env.GOVERSION}}"
- -X "github.com/updatecli/udash/pkg/version.Version={{ .Version }}"
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
- arm
changelog:
## Delegate Changelog to release-drafter
disable: true
dockers:
- image_templates:
- 'updatecli/udash:{{ .Tag }}-amd64'
- 'ghcr.io/updatecli/udash:{{ .Tag }}-amd64'
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--no-cache"
- "--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}}"
- "--platform=linux/amd64"
goos: linux
goarch: amd64
extra_files:
- Makefile
- image_templates:
- 'updatecli/udash:{{ .Tag }}-arm64'
- 'ghcr.io/updatecli/udash:{{ .Tag }}-arm64'
dockerfile: Dockerfile
use: buildx
build_flag_templates:
- "--pull"
- "--no-cache"
- "--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}}"
- "--platform=linux/arm64"
goos: linux
goarch: arm64
extra_files:
- Makefile
docker_manifests:
- name_template: 'updatecli/udash:{{ .Tag }}'
image_templates:
- 'updatecli/udash:{{ .Tag }}-amd64'
- 'updatecli/udash:{{ .Tag }}-arm64'
- name_template: 'ghcr.io/updatecli/udash:{{ .Tag }}'
image_templates:
- 'ghcr.io/updatecli/udash:{{ .Tag }}-amd64'
- 'ghcr.io/updatecli/udash:{{ .Tag }}-arm64'
- name_template: 'updatecli/udash:latest'
image_templates:
- 'updatecli/udash:{{ .Tag }}-amd64'
- 'updatecli/udash:{{ .Tag }}-arm64'
- name_template: 'ghcr.io/updatecli/udash:latest'
image_templates:
- 'ghcr.io/updatecli/udash:{{ .Tag }}-amd64'
- 'ghcr.io/updatecli/udash:{{ .Tag }}-arm64'
env:
- GO111MODULE=on
- CGO_ENABLED=0
nfpms:
- file_name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
homepage: 'https://www.updatecli.io'
description: 'Udash is an Updatecli dashboard platform'
maintainer: 'Olivier Vernin <[email protected]>'
vendor: Updatecli
formats:
- deb
- rpm
dependencies:
- ca-certificates
snapshot:
name_template: "{{ .Tag }}-next"