This repository has been archived by the owner on May 11, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
86 lines (79 loc) · 1.94 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
---
project_name: tablo
archives:
- id: tablo
builds:
- tablo
- tabloctl
files:
- LICENSE
format: tar.gz
name_template: "{{.ProjectName}}_{{.Version}}_{{.Os}}-{{.Arch}}"
replacements:
386: 32bit
amd64: 64bit
darwin: macOS
linux: Linux
brews:
- name: tablo
caveats:
commit_author:
name: Kamil Samigullin
email: [email protected]
description: The one point of view to all your task boards.
folder: Formula
homepage: https://github.com/octopot/tablo
github:
owner: octolab
name: homebrew-tap
install: |
bin.install "tablo"
output = Utils.popen_read("#{bin}/tablo completion bash")
(bash_completion/"tablo").write output
output = Utils.popen_read("#{bin}/tablo completion zsh")
(zsh_completion/"_tablo").write output
bin.install "tabloctl"
output = Utils.popen_read("#{bin}/tabloctl completion bash")
(bash_completion/"tabloctl").write output
output = Utils.popen_read("#{bin}/tabloctl completion zsh")
(zsh_completion/"_tabloctl").write output
prefix.install_metafiles
test: |
system "#{bin}/tablo version"
system "#{bin}/tabloctl version"
builds:
- id: tablo
binary: tablo
env:
- CGO_ENABLED=0
flags:
- -trimpath
goarch:
- 386
- amd64
goos:
- darwin
- linux
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
main: ./cmd/server/main.go
- id: tabloctl
binary: tabloctl
env:
- CGO_ENABLED=0
flags:
- -trimpath
goarch:
- 386
- amd64
goos:
- darwin
- linux
ldflags:
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
main: ./cmd/client/main.go
checksum: { name_template: checksums.txt }
release:
github:
owner: octopot
name: tablo