forked from kamilsk/semaphore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
49 lines (44 loc) · 992 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 `semaphore help` to see detailed help message
commit_author:
name: Kamil Samigullin
email: [email protected]
description: Semaphore pattern implementation with timeout of lock/unlock operations.
folder: Formula
github:
name: homebrew-tap
owner: kamilsk
homepage: https://github.com/kamilsk/semaphore
build:
binary: semaphore
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/semaphore
checksum: { name_template: checksums.txt }
release:
draft: false
github:
name: semaphore
owner: kamilsk