-
Notifications
You must be signed in to change notification settings - Fork 32
/
.goreleaser.yaml
46 lines (40 loc) · 1.03 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
before:
hooks:
- go mod tidy
- go generate ./...
builds:
- env:
- CGO_ENABLED=1
goos:
- darwin
goarch:
- arm64
binary: "{{ .ProjectName }}"
archives:
- format: tar.gz
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
files:
- LICENSE
- README.md
- "dist/{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}/{{ .ProjectName }}"
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
- name: "{{ .ProjectName }}"
homepage: "https://github.com/context-labs/mactop"
description: "Apple Silicon Monitor Top written in Go Lang"
url_template: "https://github.com/context-labs/mactop/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
caveats: "mactop requires macOS 12+, and runs only on Apple Silicon."
install: |
bin.install "{{ .ProjectName }}"
repository:
owner: "context-labs"
name: "mactop"