We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f569dd2 commit 13ceb65Copy full SHA for 13ceb65
.gitignore
@@ -16,4 +16,4 @@
16
17
**/.DS_Store
18
/local
19
-/dist
+dist/
.goreleaser.yml
@@ -0,0 +1,24 @@
1
+before:
2
+ hooks:
3
+ # You may remove this if you don't use go modules.
4
+ - go mod tidy
5
+builds:
6
+ - env:
7
+ goos:
8
+ - darwin
9
+ goarch:
10
+ - amd64
11
+archives:
12
+ - replacements:
13
+ 386: i386
14
+ amd64: x86_64
15
+checksum:
+ name_template: 'checksums.txt'
+snapshot:
+ name_template: "{{ .Tag }}-next"
+changelog:
20
+ sort: asc
21
+ filters:
22
+ exclude:
23
+ - '^docs:'
24
+ - '^test:'
Makefile
@@ -1,3 +1,9 @@
build:
- go build -o local/topframe .
+ go build -o local/topframe .
+
+release:
+ goreleaser --snapshot --skip-publish --rm-dist
+clean:
+ rm -rf ./dist
0 commit comments