-
Notifications
You must be signed in to change notification settings - Fork 24
/
.goreleaser.yml
63 lines (63 loc) · 1.35 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
release:
github:
owner: knqyf263
name: utern
name_template: '{{.Tag}}'
brews:
- name: utern
tap:
owner: knqyf263
name: homebrew-utern
token: "{{ .Env.GITHUB_TOKEN }}"
commit_author:
name: goreleaserbot
email: [email protected]
description: "Multi group and stream log tailing for AWS CloudWatch Logs"
homepage: "https://github.com/knqyf263/utern"
install: |
bin.install Dir['utern']
test: |
system "#{bin}/utern"
builds:
- goos:
- linux
- darwin
- windows
goarch:
- amd64
- "386"
- arm
- arm64
goarm:
- 7
main: .
ldflags:
- -s -w
- "-X main.version={{.Version}}"
- "-X main.commit={{.Commit}}"
archives:
- format: zip
name_template: '{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
files:
- LICENSE*
- README*
- CHANGELOG*
- CREDITS
nfpms:
- file_name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
replacements:
amd64: 64-bit
386: 32-bit
arm: ARM
arm64: ARM64
darwin: macOS
linux: Tux
vendor: knqyf263
homepage: https://github.com/knqyf263/utern
maintainer: Teppei Fukuda <[email protected]>
license: MIT
formats:
- deb
- rpm
checksum:
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt'