Skip to content

Initial

Initial #21

Workflow file for this run

name: Build
on: [push]
jobs:
# Build job
build:
# <Not provided for brevity>
# At a minimum this job should upload artifacts using actions/upload-pages-artifact
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: "1.22"
- name: build
run: "GOARCH=wasm GOOS=js go build -o web/app.wasm \ngo run ./\n"
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./
# Deployment job
deploy:
permissions:
id-token: write
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4