Skip to content

Generate demo site

Generate demo site #43

Workflow file for this run

name: Generate demo site
on: [workflow_dispatch]
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Install and Build 🔧
run: |
yarn
yarn demo
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: demo-dist # The folder the action should deploy.