-
Notifications
You must be signed in to change notification settings - Fork 1
/
.goreleaser.yml
41 lines (41 loc) · 881 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
36
37
38
39
40
41
before:
hooks:
- go mod tidy
builds:
- main: ./cmd/trench
binary: trench
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
archives:
- replacements:
darwin: macos
format_overrides:
- goos: windows
format: zip
snapshot:
name_template: "{{ incpatch .Tag }}-next"
changelog:
skip: true
brews:
- tap:
owner: athos
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
commit_author:
name: goreleaserbot
email: goreleaser@carlosbecker.com
folder: Formula
homepage: "https://github.com/athos/trenchman"
description: "A standalone nREPL/prepl client written in Go and heavily inspired by Grenchman"
license: "MIT"
test: |
system "#{bin}/trench --version"
install: |
bin.install "trench"