Skip to content

Format doc comments #50

Format doc comments

Format doc comments #50

Workflow file for this run

name: Deploy website
on:
push:
branches: ["main"]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
target: wasm32-unknown-unknown
- uses: Swatinem/rust-cache@v2
- name: Setup wasm-bindgen
uses: jetli/[email protected]
with:
version: "0.2.89"
- name: Deploy Benchmarks
run: |
bash ./.github/scripts/deploy_benchmarks.sh website/content/benchmarks
- name: Deploy Examples
run: |
./.github/scripts/deploy_showcase.sh
- name: Deploy Site
uses: shalzz/[email protected]
env:
BUILD_DIR: website
PAGES_BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}