We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e67504c commit bd3e1caCopy full SHA for bd3e1ca
.gitignore
@@ -1,2 +1,3 @@
1
.DS_Store
2
-/bin/*
+bin/
3
+dist/
.goreleaser.yml
@@ -0,0 +1,22 @@
+env:
+ - GO111MODULE=on
+ - 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