File tree Expand file tree Collapse file tree 1 file changed +12
-26
lines changed Expand file tree Collapse file tree 1 file changed +12
-26
lines changed Original file line number Diff line number Diff line change 9
9
build :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - name : Checkout
13
- uses : actions/checkout@v2
14
- - name : Release
15
- uses : softprops/action-gh-release@v1
16
- on :
17
- push :
18
- branches : [ master ]
19
- pull_request :
20
- branches : [ master ]
12
+ - uses : actions/checkout@v2
13
+ - uses : actions/setup-go@v2
14
+ with :
15
+ go-version : 1.17
21
16
22
- workflow_dispatch :
17
+ # Touching the generated proto files ensures that make will not try to
18
+ # regenerate them.
19
+ - name : make release
20
+ run : find -name '*.pb.go' -exec touch {} \; && make release
23
21
24
- jobs :
25
- steps :
26
- - uses : actions/checkout@v2
27
- - uses : actions/setup-go@v2
28
- with :
29
- go-version : 1.17
30
-
31
- # Touching the generated proto files ensures that make will not try to
32
- # regenerate them.
33
- - name : make release
34
- run : find -name '*.pb.go' -exec touch {} \; && make release
35
-
36
- - name : Upload Release
37
- uses : softprops/action-gh-release@v1
38
- with :
39
- files : gohdfs-*-linux-amd64.tar.gz
22
+ - name : Upload Release
23
+ uses : softprops/action-gh-release@v1
24
+ with :
25
+ files : gohdfs-*-linux-amd64.tar.gz
You can’t perform that action at this time.
0 commit comments