Skip to content

Build Website with TypeDoc and Examples #2

Build Website with TypeDoc and Examples

Build Website with TypeDoc and Examples #2

Workflow file for this run

name: Build Docs with TypeDoc
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18
- run: npm ci
- run: npm run docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs