-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
35 lines (34 loc) · 922 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
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- darwin
goarch:
- 386
- amd64
- arm
- arm64
mod_timestamp: '{{ .CommitTimestamp }}'
archives:
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
replacements:
darwin: Mac
linux: Linux
386: i386
amd64: x86_64
brews:
- tap:
owner: suzaku
name: homebrew
folder: Formula
homepage: https://github.com/suzaku/rose
description: A command line tool that allows you to treat files as sets of rows and perform set operations on them.
test: |
system "#{bin}/rose -v"
install: |-
bin.install "rose"
output = Utils.popen_read("#{bin}/rose completion bash")
(bash_completion/"rose").write output
output = Utils.popen_read("#{bin}/rose completion zsh")
(zsh_completion/"_rose").write output