Skip to content

Workflow file for this run

name: Deploy docs to Github Pages
on:
workflow_dispatch:
release:
type: [published]
branches:
- dev
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: npm i --force
- run: tsc
- run: touch ./docs/.nojekyll
- run: |
cd ./playground
npm i --force
npx next build
npx next export -o ../docs
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: .