Skip to content

Revert "Try WebKit again on CI" #31

Revert "Try WebKit again on CI"

Revert "Try WebKit again on CI" #31

Workflow file for this run

name: Demo
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup stable Rust
run: rustup target add wasm32-unknown-unknown
- name: Setup nightly Rust
run: rustup toolchain install nightly-2022-12-12 --profile minimal --target wasm32-unknown-unknown --component rust-src
- name: Build demo
working-directory: ./demo
run: |
npm ci
npm run build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: demo/dist # The folder the action should deploy.