We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b214cef commit b8a72e8Copy full SHA for b8a72e8
1 file changed
.github/workflows/pages.yml
@@ -23,9 +23,10 @@ jobs:
23
with:
24
go-version-file: go.mod
25
26
- - uses: nicholasgasior/setup-tinygo@v1
27
- with:
28
- tinygo-version: 0.35.0
+ - name: Install TinyGo
+ run: |
+ wget -q https://github.com/tinygo-org/tinygo/releases/download/v0.35.0/tinygo_0.35.0_amd64.deb -O /tmp/tinygo.deb
29
+ sudo dpkg -i /tmp/tinygo.deb
30
31
- name: Build WASM artifacts
32
run: |
0 commit comments