File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' *'
7
+
8
+ jobs :
9
+ goreleaser :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ -
13
+ name : Checkout
14
+ uses : actions/checkout@v4
15
+ with :
16
+ fetch-depth : 0
17
+ -
18
+ name : Set up Go
19
+ uses : actions/setup-go@v5
20
+ with :
21
+ go-version : 1.18
22
+ -
23
+ name : Run GoReleaser
24
+ uses : goreleaser/goreleaser-action@v6
25
+ with :
26
+ distribution : goreleaser
27
+ version : latest
28
+ args : release --clean
29
+ env :
30
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 9
9
runs-on : ${{ matrix.os }}
10
10
steps :
11
11
- name : Install Go
12
- uses : actions/setup-go@v4
12
+ uses : actions/setup-go@v5
13
13
with :
14
14
go-version : ${{ matrix.go-version }}
15
15
- name : Checkout code
You can’t perform that action at this time.
0 commit comments