-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
.goreleaser.yaml
185 lines (177 loc) · 4.6 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
# .goreleaser.yaml
project_name: vfox
before:
hooks:
- go mod tidy
builds:
- binary: 'vfox'
main: './'
env:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- "386"
- amd64
- arm
- arm64
- loong64
goarm:
- "7"
ignore:
- goos: windows
goarch: arm
- goos: windows
goarch: loong64
- goos: darwin
goarch: loong64
mod_timestamp: "{{ .CommitTimestamp }}"
flags:
- -trimpath
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{ .CommitDate }} -X main.builtBy=goreleaser -X main.treeState={{ .IsGitDirty }}
checksum:
name_template: "checksums.txt"
changelog:
sort: asc
use: github
filters:
exclude:
- "^test:"
- "^chore"
- "merge conflict"
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
groups:
- title: "New Features"
regexp: '^feat:'
order: 100
- title: "Bug fixes"
regexp: '^fix:'
order: 200
- title: "Documentation updates"
regexp: '^doc:'
order: 400
- title: Other work
order: 9999
archives:
- name_template: >-
{{ .ProjectName }}_
{{- .Version }}_
{{- if eq .Os "darwin" }}macos_
{{- else }}{{ .Os }}_{{ end }}
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else if eq .Arch "arm64" }}aarch64
{{- else if eq .Arch "arm" }}armv{{ .Arm }}
{{- else }}{{ .Arch }}{{ end }}
wrap_in_directory: true
format_overrides:
- goos: windows
format: zip
builds_info:
group: root
owner: root
files:
- README.md
- LICENSE
- completions/*
brews:
- name: 'vfox'
repository:
owner: version-fox
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TOKEN }}"
folder: Formula
goarm: "7"
homepage: https://github.com/version-fox/vfox
description: A cross-platform SDK version manager with a simple cli.
url_template: "https://github.com/version-fox/vfox/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
license: "Apache-2.0"
commit_author:
name: "Han Li"
email: [email protected]
test: |
system "#{bin}/vfox version"
extra_install: |-
bash_completion.install "completions/bash_autocomplete" => "vfox"
zsh_completion.install "completions/zsh_autocomplete" => "_vfox"
nfpms:
- file_name_template: >-
{{ .ProjectName }}_
{{- .Version }}_
{{- if eq .Os "darwin" }}macos_
{{- else }}{{ .Os }}_{{ end }}
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else if eq .Arch "arm64" }}aarch64
{{- else if eq .Arch "arm" }}armv{{ .Arm }}
{{- else }}{{ .Arch }}{{ end }}
id: vfox
homepage: https://github.com/version-fox/vfox
description: |-
A cross-platform SDK version manager with a simple cli.
Swiftly install and switch between different SDK versions
using Lua scripts as plugins. Simplify your version management
with VersionFox.
maintainer: Han Li <[email protected]>
license: 'Apache-2.0'
vendor: VersionFox
bindir: /usr/bin
section: utils
contents:
- src: ./completions/bash_autocomplete
dst: /usr/share/bash-completion/completions/vfox
file_info:
mode: 0644
- src: ./completions/zsh_autocomplete
dst: /usr/share/zsh/site-functions/_vfox
file_info:
mode: 0644
- src: ./LICENSE
dst: /usr/share/doc/vfox/copyright
file_info:
mode: 0644
formats:
- rpm
- deb
rpm:
group: Development/Tools
#winget:
# - name: vfox
# publisher: lihan
# license: 'Apache-2.0'
# homepage: https://github.com/version-fox/vfox
# short_description: A cross-platform SDK version manager with a simple cli.
# repository:
# owner: aooohan
# name: vfox-winget-pkgs
# branch: "vfox-{{.Version}}"
# pull_request:
# enabled: true
# draft: true
# base:
# owner: microsoft
# name: winget-pkgs
# branch: master
signs:
- cmd: cosign
certificate: "${artifact}.pem"
output: true
artifacts: checksum
args:
- sign-blob
- "--output-certificate=${certificate}"
- "--output-signature=${signature}"
- "${artifact}"
- --yes
release:
draft: false
prerelease: true
name_template: "v{{ .Version }}"
footer: |
**Full Changelog**: https://github.com/version-fox/vfox/compare/{{ .PreviousTag }}...{{ .Tag }}