-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
56 lines (50 loc) · 1.14 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
before:
hooks:
- 'go mod tidy'
builds:
- env:
- 'CGO_ENABLED=0'
dir: 'cmd/matrixcli'
main: 'main.go'
binary: 'matrixcli'
goos:
- 'linux'
- 'darwin'
- 'windows'
archives:
- name_template: >-
{{ .ProjectName | tolower }}_
{{- .Version }}_
{{- title .Os | tolower }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
wrap_in_directory: true
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
nfpms:
- vendor: Nick Adams
homepage: https://github.com/nadams/go-matrixcli
maintainer: "Nick Adams <[email protected]>"
description: |-
Interact with matrix servers from the cli
license: 'Apache-2.0'
archlinux:
packager: 'Nick Adams <[email protected]>'
formats:
- 'deb'
- 'rpm'
- 'archlinux'
gitlab_urls:
api: 'https://gitlab.node-3.net/api/v4/'
download: 'https://gitlab.node-3.net'
skip_tls_verify: false
use_package_registry: false