We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855afd1 commit 9b70e33Copy full SHA for 9b70e33
1 file changed
.github/workflows/build-image.yml
@@ -27,15 +27,28 @@ jobs:
27
with:
28
path: kernel-a20
29
30
+ - name: Check out tools (consolving fork)
31
+ uses: actions/checkout@v4
32
+ with:
33
+ repository: consolving/gokrazy-tools
34
+ path: tools
35
+
36
+ - name: Check out internal (consolving fork)
37
38
39
+ repository: consolving/gokrazy-internal
40
+ path: internal
41
42
- name: Set up Go
43
uses: actions/setup-go@v5
44
45
go-version: ${{ env.GO_VERSION }}
46
cache-dependency-path: kernel-a20/go.sum
47
- - name: Install gok
48
+ - name: Build and install gok from source
49
run: |
- GOPROXY=direct go install github.com/gokrazy/tools/cmd/gok@latest
50
+ go install ./cmd/gok
51
+ working-directory: tools
52
53
- name: Create gokrazy instance
54
0 commit comments