We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65dc371 commit 7a07939Copy full SHA for 7a07939
.goreleaser.yml
@@ -0,0 +1,22 @@
1
+builds:
2
+-
3
+ main: ./cmd/koala/main.go
4
+ env:
5
+ - CGO_ENABLED=0
6
+archive:
7
+ replacements:
8
+ darwin: Darwin
9
+ linux: Linux
10
+ windows: Windows
11
+ 386: i386
12
+ amd64: x86_64
13
+checksum:
14
+ name_template: 'checksums.txt'
15
+snapshot:
16
+ name_template: "{{ .Tag }}-next"
17
+changelog:
18
+ sort: asc
19
+ filters:
20
+ exclude:
21
+ - '^docs:'
22
+ - '^test:'
Makefile
@@ -39,7 +39,7 @@ $(DEP):
39
go get -v -u github.com/golang/dep/cmd/dep
40
41
release: $(GORELEASER)
42
- goreleaser
+ goreleaser --rm-dist
43
44
cover: test
45
go tool cover -html=coverage-all.out
0 commit comments