Skip to content

Split out scof modules (#28) #12

Split out scof modules (#28)

Split out scof modules (#28) #12

Workflow file for this run

# Simple workflow for deploying to GitHub Pages
name: Deploy Website To Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["v0"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run
# in-progress and latest queued. However, do NOT cancel in-progress runs as we
# want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
defaults:
run:
working-directory: ./web
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: taiki-e/checkout-action@v1
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Install Dependencies
uses: taiki-e/install-action@v2
with:
tool: wasm-bindgen-cli, wasm-opt
- run: sudo apt install wabt
- run: rustup target add wasm32-unknown-unknown
- run: sh build.sh
- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload site folder
path: './web/site'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4