Skip to content

bump: 2.9.1

bump: 2.9.1 #33

Workflow file for this run

name: website
on:
push:
branches:
- master
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: NPM setup
run: npm i
- name: Build typedoc
run: npm run typedoc
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: docs-v3
build_dir: doc
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}