forked from kamilsk/retry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
49 lines (44 loc) · 995 Bytes
/
.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
archive:
files:
- LICENSE
format: tar.gz
format_overrides:
- goos: windows
format: zip
name_template: "{{.Binary}}_{{.Version}}_{{.Os}}-{{.Arch}}"
replacements:
386: 32bit
amd64: 64bit
darwin: macOS
linux: Linux
windows: Windows
brew:
caveats: Use `retry --help` to see detailed help message
commit_author:
name: Kamil Samigullin
email: kamil@samigullin.info
description: Functional mechanism based on context to perform actions repetitively until successful.
folder: Formula
github:
name: homebrew-tap
owner: kamilsk
homepage: https://github.com/kamilsk/retry
build:
binary: retry
env:
- CGO_ENABLED=0
goarch:
- 386
- amd64
goos:
- darwin
- linux
- windows
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
main: ./cmd/retry
checksum: { name_template: checksums.txt }
release:
draft: false
github:
name: retry
owner: kamilsk