Implementing downloading/previewing metrics and geometries #18
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
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
defaults: | |
run: | |
working-directory: popgetter-browser | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install wasm-pack | |
uses: jetli/[email protected] | |
- name: Cache WASM build | |
uses: actions/cache@v3 | |
with: | |
path: popgetter-browser/rust_backend/target | |
key: rust_backend | |
- name: Install dependencies for all packages | |
run: | | |
cd web/ | |
pnpm install | |
- name: Build web app | |
run: | | |
cd web | |
pnpm rust-release | |
pnpm build | |
- name: Publish | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: popgetter-browser/web/build/ |