forked from version-fox/vfox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
221 lines (206 loc) · 5.49 KB
/
.goreleaser.yaml
File metadata and controls
221 lines (206 loc) · 5.49 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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
# .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:"
- "^ci:"
- "^style:"
- "merge conflict"
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
groups:
- title: "🚀 New Features"
regexp: '^feat(\(.+\))?:'
order: 0
- title: "🐛 Bug Fixes"
regexp: '^fix(\(.+\))?:'
order: 1
- title: "📝 Documentation"
regexp: '^docs?(\(.+\))?:'
order: 2
- title: "⚡ Performance Improvements"
regexp: '^perf(\(.+\))?:'
order: 3
- title: "♻️ Refactoring"
regexp: '^refactor(\(.+\))?:'
order: 4
- title: "🎨 Styling"
regexp: '^style(\(.+\))?:'
order: 5
- title: "🧪 Tests"
regexp: '^test(\(.+\))?:'
order: 6
- title: "🔧 Chores"
regexp: '^chore(\(.+\))?:'
order: 7
- title: "📦 Build & CI"
regexp: '^(build|ci)(\(.+\))?:'
order: 8
- title: "⬆️ Dependencies"
regexp: '^(deps|dep)(\(.+\))?:'
order: 9
- title: "Other Changes"
order: 999
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 }}"
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: aooohan@gmail.com
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 <aooohan@gmail.com>
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: true
prerelease: auto
name_template: "v{{ .Version }}"
header: |
## 🎉 What's Changed in v{{ .Version }}
footer: |
---
**Full Changelog**: https://github.com/version-fox/vfox/compare/{{ .PreviousTag }}...{{ .Tag }}
## Installation
See [installation guide](https://vfox.dev/guides/quick-start.html) for more details.
## Thanks
Thanks to all contributors who made this release possible! 🎉