File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 23
23
jobs :
24
24
release-ui :
25
25
if : startsWith(github.ref, 'refs/tags/v') == true
26
- runs-on : ubuntu-18.04
26
+ runs-on : ubuntu-latest
27
27
steps :
28
28
- uses : actions/checkout@v1
29
29
- uses : actions/setup-node@v1
@@ -59,13 +59,17 @@ jobs:
59
59
runs-on : macos-11
60
60
steps :
61
61
- name : Set up Go
62
- uses : actions/setup-go@v1
62
+ uses : actions/setup-go@v3
63
63
with :
64
64
go-version : 1.19
65
65
- id : get_version
66
66
run : |
67
67
RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/!!p')
68
68
echo "::set-output name=release_version::$RELEASE_VERSION"
69
+ - name : install-go-bindata
70
+ run : go install github.com/go-bindata/go-bindata/go-bindata@latest
71
+ env :
72
+ GOPATH : /Users/runner/work/devspace/go
69
73
- name : Check out code into the Go module directory
70
74
uses : actions/checkout@v1
71
75
- name : Download ui tar
You can’t perform that action at this time.
0 commit comments