Skip to content

Only add flows for MSOA in lookup #363

Only add flows for MSOA in lookup

Only add flows for MSOA in lookup #363

Workflow file for this run

name: Deploy site
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
tinytex: true
- name: Render site
run: |
cd docs
quarto render --to all
- name: Install node
uses: actions/setup-node@v2
with:
node-version: 18.x
cache: 'npm'
cache-dependency-path: web/package-lock.json
- name: Build web app
run: |
cd web
npm ci
npm run build --if-present
mv dist ../docs/_book/app
- name: Publish
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_book
keep_files: true