We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7261f91 commit c7fe04aCopy full SHA for c7fe04a
.gitignore
@@ -29,4 +29,5 @@ MakeFile
29
30
#MacOS
31
.DS_Store
32
-.vscode
+.vscode
33
+dist/
.goreleaser.yaml
@@ -0,0 +1,25 @@
1
+# .goreleaser.yml
2
+
3
+project_name: backhaul
4
5
+builds:
6
+ - env:
7
+ - CGO_ENABLED=0
8
+ goos:
9
+ - linux
10
+ - windows
11
+ - darwin
12
+ goarch:
13
+ - amd64
14
+ - arm64
15
+ main: ./main.go
16
+ ldflags: "-s -w"
17
18
+archives:
19
+ - format: tar.gz
20
+ name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
21
22
+release:
23
+ github:
24
+ owner: musixal
25
+ name: backhaul
0 commit comments