-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
.goreleaser.yml
112 lines (106 loc) · 2.06 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
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
101
102
103
104
105
106
107
108
109
110
111
112
version: 2
before:
hooks:
- go mod tidy
- go mod vendor
builds:
-
id: ov-linux
binary: ov
ldflags:
- -X main.Version={{.Version}}
- -X main.Revision={{.ShortCommit}}
env:
- CGO_ENABLED=0
goos:
- linux
goarch:
- '386'
- amd64
- arm
- arm64
-
id: ov-other
binary: ov
ldflags:
- -X main.Version={{.Version}}
- -X main.Revision={{.ShortCommit}}
env:
- CGO_ENABLED=0
goos:
- darwin
- windows
- freebsd
goarch:
- '386'
- amd64
- arm
- arm64
archives:
-
id: ov-archives
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
builds:
- ov-linux
- ov-other
files:
- LICENSE
- README.md
- ov.yaml
- ov-less.yaml
format: zip
nfpms:
-
id: ov-nfpms
file_name_template: "{{ .ConventionalFileName }}"
builds:
- ov-linux
homepage: https://github.com/noborus/ov
maintainer: Noboru Saito <[email protected]>
description: ov is a feature rich terminal pager.
license: MIT
formats:
- deb
- rpm
bindir: /usr/bin
epoch: "1"
brews:
-
name: ov
repository:
owner: noborus
name: homebrew-tap
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
commit_author:
name: noborus
email: [email protected]
homepage: https://github.com/noborus/ov
description: "Feature rich terminal pager"
test:
system "#{bin}/ov --version"
install:
bin.install "ov"
winget:
-
name: ov
publisher: noborus
author: Noboru Saito
short_description: Feature rich terminal pager
homepage: https://noborus.github.io/ov/
license: MIT
repository:
owner: noborus
name: winget-pkgs
branch: "ov-{{ .Version }}"
token: "{{ .Env.TAP_GITHUB_TOKEN }}"
pull_request:
enabled: false
draft: false
base:
owner: microsoft
name: winget-pkgs
branch: master
source:
enabled: true
files:
- vendor