File tree 2 files changed +13
-5
lines changed
2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -2,23 +2,31 @@ name: build
2
2
3
3
on :
4
4
push :
5
+ exclude :
6
+ - ' v*'
7
+ ignore :
8
+ - ' docs/**'
9
+ - ' .github/**'
10
+ - ' *.sh'
11
+ - ' *.md'
12
+ workflow_dispatch :
5
13
6
14
jobs :
7
15
build :
8
16
runs-on : ubuntu-latest
9
17
steps :
10
18
- name : Checkout
11
- uses : actions/checkout@v2
19
+ uses : actions/checkout@v4
12
20
with :
13
21
fetch-depth : 0
14
22
15
23
- name : Setup Go
16
- uses : actions/setup-go@v2
24
+ uses : actions/setup-go@v4
17
25
with :
18
- go-version : 1.18
26
+ go-version : 1.21
19
27
20
28
- name : GoReleaser Build
21
- uses : goreleaser/goreleaser-action@v2
29
+ uses : goreleaser/goreleaser-action@v5
22
30
with :
23
31
distribution : goreleaser
24
32
version : latest
Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ Random tidbits that I need to remember for working on fflint
7
7
8
8
[ GoReleaser] ( https://goreleaser.com/quick-start/ ) uses tags to trigger releases:
9
9
```
10
- git tag -a major.minor.patch -m major.minor.patch
10
+ git tag -a vMAJOR.MINOR.PATH -m " major.minor.patch optional description"
11
11
git push origin --tags
12
12
```
You can’t perform that action at this time.
0 commit comments