File tree 2 files changed +48
-0
lines changed
2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+ on :
3
+ push :
4
+ tags :
5
+ - " v*.*.*"
6
+
7
+ permissions :
8
+ contents : write
9
+
10
+ jobs :
11
+ build-go :
12
+ runs-on : self-hosted
13
+ # needs: build-ui
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ with :
17
+ fetch-depth : 0
18
+ - name : Set up Go
19
+ uses : actions/setup-go@v2
20
+ with :
21
+ go-version : 1.22
22
+
23
+ - name : Run GoReleaser
24
+ uses : goreleaser/goreleaser-action@v2
25
+ with :
26
+ distribution : goreleaser
27
+ version : latest
28
+ args : release --rm-dist
29
+ env :
30
+ VERSION : ${{ github.ref }}
31
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ # GoReleaser configuration
2
+ archives :
3
+ - name_template : " {{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
4
+ format : binary
5
+
6
+ builds :
7
+ - binary : pilot
8
+ id : pilot
9
+ main : ./main.go
10
+ env :
11
+ - CGO_ENABLED=0
12
+ goos :
13
+ - linux
14
+ # - windows
15
+ goarch :
16
+ - amd64
17
+ - arm64
You can’t perform that action at this time.
0 commit comments