-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yaml
104 lines (94 loc) · 2.42 KB
/
.goreleaser.yaml
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
project_name: probe
before:
hooks:
- go mod tidy
- go generate ./...
builds:
- main: ./main.go
binary: probe
goos: [ 'linux', 'darwin', 'windows' ]
goarch: [ '386', 'amd64', 'arm64' ]
env:
- CGO_ENABLED=0
ldflags:
- -s -w -X "main.version={{.Version}}"
universal_binaries:
- replace: true
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
nfpms:
- package_name: probe
vendor: abhimanyu003
homepage: "https://github.com/abhimanyu003/probe/"
maintainer: "Abhimanyu Sharma <[email protected]>"
description: "Simplified Integration Testing Using YAML and JQ."
license: MIT
formats:
- deb
- rpm
- archlinux
bindir: /usr/bin
brews:
- tap:
owner: abhimanyu003
name: homebrew-tap
folder: Formula
name: probe
homepage: "https://github.com/abhimanyu003/probe"
description: "Simplified Integration Testing Using YAML and JQ."
license: "MIT"
skip_upload: auto
commit_author:
name: abhimanyu003
email: [email protected]
install: |-
bin.install "probe"
test: |
system "#{bin}/probe -v"
scoop:
bucket:
owner: abhimanyu003
name: scoop-bucket
commit_author:
name: "Abhimanyu Sharma"
email: [email protected]
homepage: "https://github.com/abhimanyu003/probe"
description: "Simplified Integration Testing Using YAML and JQ."
license: MIT
snapcrafts:
- id: probe
name: go-probe
publish: true
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
summary: Simplified Integration Testing Using YAML and JQ.
description: |
Simplified Integration Testing Using YAML and JQ.
grade: stable
confinement: strict
license: MIT
base: core20
apps:
probe:
command: probe
plugs: [ "home", "network" ]
aliases: [ "probe" ]
aurs:
- name: probe-bin
homepage: "https://github.com/abhimanyu003/probe"
description: "Simplified Integration Testing Using YAML and JQ."
maintainers:
- 'Abhimanyu Sharma <[email protected]>'
license: "MIT"
private_key: '{{ .Env.AUR_KEY }}'
git_url: 'ssh://[email protected]/probe-bin.git'
commit_author:
name: Abhimanyu Sharma
email: [email protected]