We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8377b1b commit 9368100Copy full SHA for 9368100
.github/workflows/build-and-release.yml
@@ -19,18 +19,18 @@ jobs:
19
- name: Setup Go
20
uses: actions/setup-go@v2
21
with:
22
- go-version: ^1.16
+ go-version: 1.18
23
24
- name: Setup Node.js
25
uses: actions/setup-node@v1
26
27
- node-version: '14.x'
+ node-version: '16.x'
28
29
- name: Build static
30
run: cd web && yarn && yarn build && cd ../
31
32
- name: Get Go dependencies
33
- run: go mod download && go get -u github.com/rakyll/statik
+ run: go mod download && go install github.com/rakyll/statik@v0.1.7
34
35
- name: Static->GO generation
36
run: statik --src=web/build
0 commit comments