-
Notifications
You must be signed in to change notification settings - Fork 66
/
.goreleaser.yaml
45 lines (45 loc) · 1 KB
/
.goreleaser.yaml
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
builds:
- main: ./cmd/super
id: sup
binary: super
env:
- CGO_ENABLED=0
ldflags:
- -s -X github.com/brimdata/super/cli.version={{ .Tag }}
goarch:
- amd64
- arm64
goos:
- linux
- windows
- darwin
archives:
- name_template: super-{{ .Tag }}.{{ .Os }}-{{ .Arch }}
format_overrides:
- goos: windows
format: zip
files:
- LICENSE.txt
- acknowledgments.txt
release:
header: |
View [change log](CHANGELOG.md#{{ replace .Tag "." "" }}).
brews:
- name: super
repository:
owner: brimdata
name: homebrew-tap
commit_author:
name: brim-bot
email: [email protected]
homepage: https://github.com/brimdata/super
description: |
An analytics database that puts JSON and relational tables on equal footing
install: |
bin.install "super"
checksum:
name_template: 'super-checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-{{ .ShortCommit }}"
changelog:
skip: true