-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
55 lines (48 loc) · 1.26 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
# To test locally: goreleaser release --snapshot --clean
# To actually release: goreleaser release --clean
#
# Notes:
# - The github token might have expired
# https://goreleaser.com/scm/github/
version: 2
project_name: herl
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
archives:
- format: binary
files:
- none*
changelog:
disable: true
env_files:
github_token: ~/.pki/github_token
nfpms:
- package_name: herl
homepage: https://github.com/SimonMTS/herl
maintainer: SimonMTS <simon at s14 dot nl>
description: A minimal and scriptable way to refresh a webpage
license: GPL-3.0
formats:
- deb
- rpm
- apk
suggests:
- entr
aurs:
- name: herl-bin
homepage: https://github.com/SimonMTS/herl
description: A minimal and scriptable way to refresh a webpage
maintainers:
- SimonMTS <simon at s14 dot nl>
license: GPL-3.0-or-later
private_key: "{{ .Env.HOME }}/.ssh/aur"
git_url: ssh://[email protected]/herl-bin.git
package: install -Dm755 ./herl* "${pkgdir}/usr/bin/herl"
commit_author:
name: SimonMTS
email: [email protected]