Skip to content

Commit 0e0ad4b

Browse files
committed
Add goreleaser support
1 parent 69b4fa8 commit 0e0ad4b

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ pg_flame
1616

1717
# Common name of flamegraph output
1818
flamegraph.html
19+
20+
# Distribution directory
21+
dist

.goreleaser.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This is an example goreleaser.yaml file with some sane defaults.
2+
# Make sure to check the documentation at http://goreleaser.com
3+
builds:
4+
- env:
5+
- CGO_ENABLED=0
6+
archives:
7+
- replacements:
8+
darwin: Darwin
9+
linux: Linux
10+
386: i386
11+
amd64: x86_64
12+
checksum:
13+
name_template: 'checksums.txt'
14+
snapshot:
15+
name_template: "{{ .Tag }}-next"
16+
changelog:
17+
sort: asc

0 commit comments

Comments
 (0)