Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpoletaev committed Jan 6, 2025
1 parent dce8ee7 commit 6615b80
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,31 @@ defaults:

jobs:
deploy:
runs-on: golang:1.23
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{steps.deployment.outputs.page_url}}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Pages
id: pages
uses: actions/configure-pages@v5

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23

- name: Build
run: make build-wasm

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./web

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 6615b80

Please sign in to comment.