forked from minamijoyo/hcledit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
39 lines (39 loc) · 849 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
# .goreleaser.yml
# Build customization
builds:
- binary: hcledit
goos:
- darwin
- linux
goarch:
- amd64
- arm64
ldflags:
- -s -w
- -X github.com/minamijoyo/hcledit/cmd.Version={{.Version}}
env:
- CGO_ENABLED=0
release:
prerelease: auto
changelog:
filters:
exclude:
- Merge pull request
- Merge branch
- Update README
- Update CHANGELOG
brews:
- tap:
owner: minamijoyo
name: homebrew-hcledit
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
commit_author:
name: "Masayuki Morita"
email: [email protected]
homepage: https://github.com/minamijoyo/hcledit
description: "A command line editor for HCL"
skip_upload: auto
test: |
system "#{bin}/hcledit version"
install: |
bin.install "hcledit"