-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.goreleaser.yml
71 lines (71 loc) · 1.84 KB
/
.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
before:
hooks:
- go mod download
- go mod tidy
builds:
-
id: filt-linux
env:
- CGO_ENABLED=0
goos:
- linux
ldflags:
- -s -w -X github.com/k1LoW/filt.version={{.Version}} -X github.com/k1LoW/filt.commit={{.FullCommit}} -X github.com/k1LoW/filt.date={{.Date}} -X github.com/k1LoW/filt/version.Version={{.Version}}
-
id: filt-darwin
env:
- CGO_ENABLED=0
goos:
- darwin
ldflags:
- -s -w -X github.com/k1LoW/filt.version={{.Version}} -X github.com/k1LoW/filt.commit={{.FullCommit}} -X github.com/k1LoW/filt.date={{.Date}} -X github.com/k1LoW/filt/version.Version={{.Version}}
archives:
-
id: filt-archive
name_template: '{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
format_overrides:
- goos: darwin
format: zip
files:
- CREDITS
- README.md
- CHANGELOG.md
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Version }}-next"
changelog:
skip: true
brews:
-
name: filt
tap:
owner: k1LoW
name: homebrew-tap
commit_author:
name: k1LoW
email: [email protected]
homepage: https://github.com/k1LoW/filt
description: 'filt is a interactive/realtime stream filter.'
install: |
bin.install 'filt'
output = Utils.safe_popen_read("#{bin}/filt", 'completion', 'bash')
(bash_completion/'filt').write output
output = Utils.safe_popen_read("#{bin}/filt", 'completion', 'zsh')
(zsh_completion/'_filt').write output
nfpms:
-
id: filt-nfpms
file_name_template: "{{ .ProjectName }}_{{ .Version }}-1_{{ .Arch }}"
builds:
- filt-linux
homepage: https://github.com/k1LoW/filt
maintainer: Ken'ichiro Oyama <[email protected]>
description: filt is a interactive/realtime stream filter.
license: MIT
formats:
- deb
- rpm
- apk
bindir: /usr/bin
epoch: 1