We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dce8ee7 commit 6615b80Copy full SHA for 6615b80
.github/workflows/deploy.yaml
@@ -20,22 +20,31 @@ defaults:
20
21
jobs:
22
deploy:
23
- runs-on: golang:1.23
+ runs-on: ubuntu-latest
24
environment:
25
name: github-pages
26
url: ${{steps.deployment.outputs.page_url}}
27
steps:
28
- name: Checkout
29
uses: actions/checkout@v4
30
+
31
- name: Setup Pages
32
id: pages
33
uses: actions/configure-pages@v5
34
35
+ - name: Setup Go
36
+ uses: actions/setup-go@v5
37
+ with:
38
+ go-version: 1.23
39
40
- name: Build
41
run: make build-wasm
42
43
- name: Upload artifact
44
uses: actions/upload-pages-artifact@v3
45
with:
46
path: ./web
47
48
- name: Deploy to GitHub Pages
49
id: deployment
50
uses: actions/deploy-pages@v4
0 commit comments