-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.goreleaser.yaml
More file actions
100 lines (90 loc) · 2.31 KB
/
.goreleaser.yaml
File metadata and controls
100 lines (90 loc) · 2.31 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
version: 2
project_name: kernel
before:
hooks:
- go mod tidy
builds:
- id: kernel
env:
- CGO_ENABLED=0
main: ./cmd/kernel
mod_timestamp: "{{ .CommitTimestamp }}"
ldflags:
- -s -w -X main.version={{ .Version }} -X main.commit={{ .Commit }} -X main.date={{ .Date }}
goarch:
- amd64
- arm64
goos:
- darwin
- linux
- windows
archives:
- id: archive
formats: [tar.gz]
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
brews:
- name: kernel
repository:
owner: kernel
name: homebrew-tap
branch: main
directory: Formula
description: "Kernel CLI"
homepage: "https://github.com/kernel/cli"
test: |
system "#{bin}/kernel", "--version"
npms:
- name: "@onkernel/cli"
repository: "https://github.com/kernel/cli"
bugs: https://github.com/kernel/cli/issues
description: Kernel CLI
homepage: https://www.kernel.sh/docs
license: MIT
author: "Rafael Garcia <raf@kernel.sh>"
access: public
keywords:
- kernel
- cli
- browsers
- automation
- ai
changelog:
sort: asc
use: github
filters:
exclude:
- "^docs:"
- "^test:"
- "merge conflict"
- Merge pull request
- Merge remote-tracking branch
- Merge branch
- go mod tidy
groups:
- title: Dependency updates
regexp: "^.*feat\\(deps\\)*:+.*$"
order: 300
- title: "New Features"
regexp: "^.*feat[(\\w)]*:+.*$"
order: 100
- title: "Bug fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 200
- title: "Documentation updates"
regexp: "^.*docs[(\\w)]*:+.*$"
order: 400
- title: Other work
order: 9999
release:
name_template: "Kernel CLI v{{ .Version }}"
footer: |
**Full Changelog**: https://github.com/kernel/cli/compare/{{ .PreviousTag }}...{{ .Tag }}
## What to do next?
- Read the [documentation](https://www.kernel.sh/docs)
- Join our [Discord server](https://discord.gg/FBrveQRcud)
- Follow us on Twitter [here](https://twitter.com/rfgarcia) and [here](https://x.com/juecd__)
# TODO:
# announce:
# discord:
# enabled: true
# message_template: "Kernel CLI {{ .Tag }} is out! Check it out: https://github.com/goreleaser/goreleaser/releases/tag/{{ .Tag }}"