Skip to content

Version 4.2.1

Version 4.2.1 #77

Workflow file for this run

name: Deploy TypeDoc to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
jobs:
typedoc:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Install & Generate TypeDoc
run: |
pnpm install --frozen-lockfile
pnpm run doc
- name: Deploy
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs
git-config-name: github-actions[bot]
git-config-email: github-actions[bot]@users.noreply.github.com