-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
56 lines (47 loc) · 1.11 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 download
builds:
- id: afosto
main: ./cmd/afosto/afosto.go
binary: afosto
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
release:
github:
owner: afosto
name: cli
name_template: "afosto-{{.ProjectName}}-v{{.Version}}"
brews:
- name: afosto-cli
tap:
owner: afosto
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
commit_author:
name: goreleaserbot
email: dev@afosto.com
folder: Formula
homepage: "https://afosto.com/"
description: "CLI tool for interaction with Afosto/IO"
license: "Apache-2.0"
test: |
afosto version
install: |
bin.install "afosto"
caveats: "Thanks for installing the Afosto CLI! If you have any feedback, please open up an issue at github.com/afosto/cli. Run `afosto login` to authenticate with the API."