-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
130 lines (120 loc) · 3.59 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
project_name: golink
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
release:
prerelease: auto
snapshot:
version_template: "{{ .Tag }}"
checksum:
name_template: '{{ .ProjectName }}-{{ .Version }}-checksums.txt'
builds:
- id: "golink"
binary: golink
ldflags:
- '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}'
goos:
- freebsd
- windows
- linux
- darwin
goarch:
- amd64
- arm
- arm64
env:
- CGO_ENABLED=0
- id: "glctl"
binary: glctl
main: ./cmd/glctl
ldflags:
- '-s -w -X github.com/azrod/golink/cmd/glctl/cmd.version={{.Version}} -X github.com/azrod/golink/cmd/glctl/cmd.commit={{.Commit}} -X github.com/azrod/golink/cmd/glctl/cmd.date={{.Date}}'
goos:
- freebsd
- windows
- linux
- darwin
goarch:
- amd64
- arm
- arm64
env:
- CGO_ENABLED=0
dockers:
- goarch: amd64
image_templates:
- "ghcr.io/azrod/{{.ProjectName}}:v{{ .Version }}-amd64"
extra_files:
- ui/
dockerfile: Dockerfile
use: buildx
ids:
- golink
- glctl
build_flag_templates:
- --platform=linux/amd64
- --pull
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description={{ .ProjectName }}
- --label=org.opencontainers.image.url=https://github.com/azrod/{{ .ProjectName }}
- --label=org.opencontainers.image.source=https://github.com/azrod/{{.ProjectName}}
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
- goarch: arm64
image_templates:
- "ghcr.io/azrod/{{ .ProjectName }}:v{{ .Version }}-arm64v8"
extra_files:
- ui/
dockerfile: Dockerfile
use: buildx
ids:
- golink
- glctl
build_flag_templates:
- --platform=linux/arm64/v8
- --pull
- --label=org.opencontainers.image.title={{ .ProjectName }}
- --label=org.opencontainers.image.description={{ .ProjectName }}
- --label=org.opencontainers.image.url=https://github.com/azrod/{{ .ProjectName }}
- --label=org.opencontainers.image.source=https://github.com/azrod/{{ .ProjectName }}
- --label=org.opencontainers.image.version={{ .Version }}
- --label=org.opencontainers.image.created={{ time "2006-01-02T15:04:05Z07:00" }}
- --label=org.opencontainers.image.revision={{ .FullCommit }}
docker_manifests:
- name_template: "ghcr.io/azrod/{{ .ProjectName }}:v{{ .Version }}"
image_templates:
- "ghcr.io/azrod/{{ .ProjectName }}:v{{ .Version }}-amd64"
- "ghcr.io/azrod/{{ .ProjectName }}:v{{ .Version }}-arm64v8"
- name_template: "ghcr.io/azrod/{{ .ProjectName }}:latest"
image_templates:
- "ghcr.io/azrod/{{ .ProjectName }}:v{{ .Version }}-amd64"
- "ghcr.io/azrod/{{ .ProjectName }}:v{{ .Version }}-arm64v8"
archives:
# Golink
- id: "golink"
builds:
- golink
format: tar.gz
wrap_in_directory: true
format_overrides:
- goos: windows
format: zip
name_template: 'golink-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
files:
- LICENSE
- README.md
# glctl
- id: "glctl"
builds:
- glctl
format: tar.gz
wrap_in_directory: true
format_overrides:
- goos: windows
format: zip
name_template: 'glctl-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
files:
- LICENSE
- ./cmd/glctl/README.md