Skip to content

Commit c7fe04a

Browse files
author
Musixal
committed
release
1 parent 7261f91 commit c7fe04a

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ MakeFile
2929

3030
#MacOS
3131
.DS_Store
32-
.vscode
32+
.vscode
33+
dist/

.goreleaser.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)