Exposes visualizations in CLI and in the web #389
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Web Demo and Docs | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Build | |
run: make web | |
- name: Upload web artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: www | |
path: target/www | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
# only actually deploy if pushed to main branch | |
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: target/www | |
force_orphan: true |