Skip to content

Merge branch 'main' of github.com:diskdance/HanAssist #76

Merge branch 'main' of github.com:diskdance/HanAssist

Merge branch 'main' of github.com:diskdance/HanAssist #76

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/github-pages-deploy-action@v4.3.3
with:
branch: gh-pages
folder: docs
git-config-name: github-actions[bot]
git-config-email: github-actions[bot]@users.noreply.github.com