This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.goreleaser.yml
90 lines (89 loc) · 2.12 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
# This is an example .goreleaser.yml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
project_name: svix
before:
hooks:
- go mod tidy
builds:
- id: svix
ldflags:
- -s -w -X github.com/svix/svix-cli/version.Version={{ .Version }}
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
ignore:
- goos: windows
goarch: arm64
archives:
- format: tar.gz
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
nfpms:
- builds:
- svix
vendor: Svix
homepage: https://www.svix.com
maintainer: Svix <[email protected]>
description: Svix CLI utility
formats:
- deb
- rpm
- apk
brews:
- repository:
owner: svix
name: homebrew-svix
commit_author:
name: svix-ci
email: [email protected]
homepage: https://www.svix.com
description: Svix CLI utility
install: |
bin.install "svix"
caveats: "Thanks for installing the Svix CLI! If this is your first time using the CLI, checkout our docs at https://docs.svix.com."
scoops:
-
repository:
owner: svix
name: scoop-svix
commit_author:
name: svix-ci
email: [email protected]
homepage: https://www.svix.com
description: Svix CLI utility
snapcrafts:
-
name: svix
publish: true
summary: Svix CLI utility
description: |
Svix makes it easy to send webhook from your service while ensuring robust deliverability and a great developer experience for your users.
You can think of it as webhooks as a service. https://docs.svix.com/
grade: stable
confinement: strict
license: GPL-3.0
base: core20
apps:
svix:
plugs: ["network"]
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'