-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.goreleaser.yml
More file actions
91 lines (87 loc) · 2.27 KB
/
Copy path.goreleaser.yml
File metadata and controls
91 lines (87 loc) · 2.27 KB
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
---
project_name: airuler
builds:
- main: ./main.go
env:
- CGO_ENABLED=0
binary: airuler
flags:
- -trimpath
- -v
ldflags:
- -s -w -X main.Version={{.Version}} -X main.BuildCommit={{.Commit}} -X main.BuildDate={{.Date}}
goos:
- darwin
- linux
- freebsd
goarch:
- amd64
- arm64
- arm
archives:
- format: tar.gz
wrap_in_directory: true
files:
- LICENSE
- README.md
dockers:
- ids:
- airuler
image_templates:
- "ratler/airuler:{{ .Tag }}-amd64"
use: buildx
goos: linux
goarch: amd64
dockerfile: Dockerfile
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}}"
- "--platform=linux/amd64"
- ids:
- airuler
image_templates:
- "ratler/airuler:{{ .Tag }}-arm64"
use: buildx
goos: linux
goarch: arm64
dockerfile: Dockerfile
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}}"
- "--platform=linux/arm64"
docker_manifests:
- name_template: "ratler/airuler:{{ .Tag }}"
image_templates:
- "ratler/airuler:{{ .Tag }}-amd64"
- "ratler/airuler:{{ .Tag }}-arm64"
- name_template: "ratler/airuler:latest"
image_templates:
- "ratler/airuler:{{ .Tag }}-amd64"
- "ratler/airuler:{{ .Tag }}-arm64"
changelog:
sort: asc
groups:
- title: Features
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: "Bug fixes"
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: Others
order: 999
filters:
exclude:
- "^docs:"
- "^test:"
- Merge pull request
- Merge branch
- go mod tidy
- Address lint issues