-
Notifications
You must be signed in to change notification settings - Fork 135
/
.goreleaser.yml
48 lines (43 loc) · 950 Bytes
/
.goreleaser.yml
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
project_name: flog
builds:
- id: cli
binary: flog
goos:
- windows
- darwin
- linux
goarch:
- amd64
archives:
- id: archive
builds:
- cli
format: tar.gz
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
files:
- LICENSE
- README.md
checksum:
name_template: "checksums.txt"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- Update README.md
- Merge pull request
- Merge branch
brews:
- name: flog
download_strategy: CurlDownloadStrategy
commit_author:
name: mingrammer
email: mingrammer@gmail.com
homepage: https://github.com/mingrammer/flog
description: "A fake log generator for common log formats"
repository:
owner: mingrammer
name: homebrew-flog
branch: main
token: "{{ .Env.GH_PAT }}"
install: bin.install "flog"