Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 11 additions & 12 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# GoReleaser v2 configuration
version: 2

project_name: super
builds:
- main: ./cmd/super
id: sup
binary: super
env:
- CGO_ENABLED=0
ldflags:
Expand All @@ -14,32 +16,29 @@ builds:
- windows
- darwin
archives:
- name_template: super-{{ .Tag }}.{{ .Os }}-{{ .Arch }}
- name_template: "{{ .ProjectName }}-{{ .Tag }}.{{ .Os }}-{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
formats: [ "zip" ]
files:
- LICENSE.txt
- acknowledgments.txt
release:
header: |
View [change log](CHANGELOG.md#{{ replace .Tag "." "" }}).
brews:
- name: super
repository:
homebrew_casks:
- repository:
owner: brimdata
name: homebrew-tap
commit_author:
name: brim-bot
email: bot@brimdata.io
homepage: https://github.com/brimdata/super
description: |
An analytics database that puts JSON and relational tables on equal footing
install: |
bin.install "super"
An analytics database that fuses structured and semi-structured data
checksum:
name_template: 'super-checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-{{ .ShortCommit }}"
version_template: "{{ incpatch .Version }}-{{ .ShortCommit }}"
changelog:
skip: true
disable: true
Loading