Skip to content

another shot

another shot #124

Workflow file for this run

name: Github Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build-github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
target: wasm32-unknown-unknown
- name: Install Trunk
run: cargo install [email protected]
- name: Build
run: env -C demo_web trunk build --release
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: demo_web/dist
single-commit: true