forked from sandglass/sandglass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
50 lines (43 loc) · 1.09 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
# .goreleaser.yml
project_name: sandglass
builds:
- main: cmd/sandglass/main.go
binary: sandglass
ldflags: -extldflags "-static" -X main.version={{.Version}} -X main.tag={{.Tag}} -X main.date={{.Date}} -X main.commit={{.Commit}}
flags: -a -tags netgo
goos:
- windows
- darwin
- linux
goarch:
- amd64
- main: cmd/sandctl/main.go
binary: sandctl
ldflags: -extldflags "-static" -X main.version={{.Version}} -X main.tag={{.Tag}} -X main.date={{.Date}} -X main.commit={{.Commit}}
flags: -a -tags netgo
goos:
- windows
- darwin
- linux
goarch:
- amd64
brew:
github:
owner: celrenheit
name: homebrew-taps
commit_author:
name: Celrenheit
email: celrenheit+github@gmail.com
folder: Formula
homepage: "https://github.com/sandglass/sandglass"
description: "Sandglass is a distributed, horizontally scalable, persistent, delayed message queue"
dockers:
- image: celrenheit/sandglass
archive:
format: tar.gz
replacements:
amd64: 64-bit
darwin: macOS
files:
- LICENSE
- README.md