Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 481 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 481 Bytes

Is a WIP; is not usable in its current form

Usage

Create a new file .github/workflows/typedoc.yml with the following contents:

name: Publish Typedoc to Github Pages
on:
  push:
    branches:
      - main
      - master
jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: TypeStrong/typedoc-action@v1
        with:
          args: --entrypoints src/index.ts
          github-token: ${{ secrets.GITHUB_TOKEN }}