-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
100 lines (92 loc) · 1.78 KB
/
Copy path.goreleaser.yaml
File metadata and controls
100 lines (92 loc) · 1.78 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
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
version: 2
project_name: lango
builds:
- id: lango
binary: lango
main: ./cmd/lango
env:
- CGO_ENABLED=1
goos:
- linux
- darwin
goarch:
- amd64
- arm64
tags:
- fts5
- vec
ldflags:
- -s -w
- -X main.Version={{.Version}}
- -X main.BuildTime={{.Date}}
- id: lango-extended
binary: lango
main: ./cmd/lango
env:
- CGO_ENABLED=1
goos:
- linux
- darwin
goarch:
- amd64
- arm64
tags:
- fts5
- vec
- kms_all
ldflags:
- -s -w
- -X main.Version={{.Version}}
- -X main.BuildTime={{.Date}}
archives:
- id: standard
ids:
- lango
name_template: "lango_{{.Version}}_{{.Os}}_{{.Arch}}"
formats:
- tar.gz
files:
- LICENSE*
- README.md
- id: extended
ids:
- lango-extended
name_template: "lango-extended_{{.Version}}_{{.Os}}_{{.Arch}}"
formats:
- tar.gz
files:
- LICENSE*
- README.md
checksum:
name_template: "checksums.txt"
algorithm: sha256
changelog:
sort: asc
groups:
- title: Features
regexp: '^.*?feat(\([[:word:]]+\))??!?:.+$'
order: 0
- title: Bug Fixes
regexp: '^.*?fix(\([[:word:]]+\))??!?:.+$'
order: 1
- title: Refactoring
regexp: '^.*?refactor(\([[:word:]]+\))??!?:.+$'
order: 2
- title: Documentation
regexp: '^.*?docs(\([[:word:]]+\))??!?:.+$'
order: 3
- title: Others
order: 999
filters:
exclude:
- "^test:"
- "^chore:"
- "^ci:"
release:
github:
owner: langoai
name: lango
prerelease: auto
draft: false
name_template: "{{.ProjectName}} v{{.Version}}"