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 5b41413 commit 1f8677aCopy full SHA for 1f8677a
.gitignore
@@ -41,4 +41,5 @@ centrifuge-chain/
41
/cfgBuilder/*.toml
42
/lvldbdata
43
/client_configs
44
-chainbridge-core-example
+chainbridge-core-example
45
+dist/
.goreleaser.yml
@@ -0,0 +1,28 @@
1
+# documentation at http://goreleaser.com
2
+before:
3
+ hooks:
4
+ - go mod tidy
5
+builds:
6
+ - env:
7
+ - CGO_ENABLED=0
8
+ goos:
9
+ - linux
10
+ - windows
11
+ - darwin
12
+archives:
13
+ - replacements:
14
+ darwin: Darwin
15
+ linux: Linux
16
+ windows: Windows
17
+ 386: i386
18
+ amd64: x86_64
19
+checksum:
20
+ name_template: 'checksums.txt'
21
+snapshot:
22
+ name_template: "{{ incpatch .Tag }}-next"
23
+changelog:
24
+ sort: asc
25
+ filters:
26
+ exclude:
27
+ - '^docs:'
28
+ - '^test:'
0 commit comments