Skip to content

Commit 6615b80

Browse files
committed
Fix build
1 parent dce8ee7 commit 6615b80

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/deploy.yaml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,31 @@ defaults:
2020

2121
jobs:
2222
deploy:
23-
runs-on: golang:1.23
23+
runs-on: ubuntu-latest
2424
environment:
2525
name: github-pages
2626
url: ${{steps.deployment.outputs.page_url}}
2727
steps:
2828
- name: Checkout
2929
uses: actions/checkout@v4
30+
3031
- name: Setup Pages
3132
id: pages
3233
uses: actions/configure-pages@v5
34+
35+
- name: Setup Go
36+
uses: actions/setup-go@v5
37+
with:
38+
go-version: 1.23
39+
3340
- name: Build
3441
run: make build-wasm
42+
3543
- name: Upload artifact
3644
uses: actions/upload-pages-artifact@v3
3745
with:
3846
path: ./web
47+
3948
- name: Deploy to GitHub Pages
4049
id: deployment
4150
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)