-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
46 lines (41 loc) · 1.05 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
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
project_name: tandem
before:
hooks:
- go mod tidy
- go generate ./...
builds:
- main: ./cmd/tandem
env:
- CGO_ENABLED=0
goos:
- linux
# - windows
- darwin
archives:
- format: tar.gz
# We use the default name_template and install.sh looks out for them.
# If you change it, update install.sh too.
# name_template:
# use zip for windows archives
format_overrides:
- goos: windows
format: zip
brews:
- tap:
owner: rosszurowski
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
commit_author:
name: GoReleaser
commit_msg_template: "Formula: {{ .ProjectName }} v{{ .Tag }}"
homepage: "https://github.com/rosszurowski/tandem"
description: "tandem runs commands in parallel, treating them as a group."
folder: Formula
license: "MIT"
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc