Skip to content

Deploy playground to github pages #124

Deploy playground to github pages

Deploy playground to github pages #124

Workflow file for this run

name: Deploy playground to github pages
on:
workflow_dispatch:
release:
types: [released]
branches:
- dev
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: npm i
- run: tsc
- run: |
cd ./docs
npm i
npm run build
touch ./out/.nojekyll
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ./docs/dist