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 fb9439c commit 6620b6eCopy full SHA for 6620b6e
.gitignore
@@ -23,3 +23,6 @@ go.work.sum
23
24
# env file
25
.env
26
+
27
+# Added by goreleaser init:
28
+dist/
.goreleaser.yaml
@@ -0,0 +1,26 @@
1
+# https://goreleaser.com/customization/
2
+# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
3
+version: 2
4
5
+before:
6
+ hooks:
7
+ - go mod tidy
8
9
+builds:
10
+ - main: ./cmd/namigo
11
+ id: namigo
12
+ binary: namigo
13
+ env:
14
+ - CGO_ENABLED=0
15
+ goos:
16
+ - linux
17
+ - windows
18
+ - darwin
19
+ flags:
20
+ - -trimpath
21
22
+release:
+ github:
+ owner: huangsam
+ name: namigo
+ name_template: "v{{ .Version }}"
0 commit comments