Skip to content

Commit bd3e1ca

Browse files
Add goreleaser config
Closes #20 Signed-off-by: Chris Cummer <[email protected]>
1 parent e67504c commit bd3e1ca

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.DS_Store
2-
/bin/*
2+
bin/
3+
dist/

.goreleaser.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
env:
2+
- GO111MODULE=on
3+
- GOPROXY="https://proxy.golang.org,direct"
4+
5+
archives:
6+
- id: default
7+
wrap_in_directory: true
8+
9+
builds:
10+
- binary: til
11+
goos:
12+
- darwin
13+
- linux
14+
goarch:
15+
- 386
16+
- amd64
17+
- arm
18+
- arm64
19+
20+
before:
21+
hooks:
22+
- make build

0 commit comments

Comments
 (0)