Skip to content

[v0.0.2] Bug Fixes - 2024-08-19 #17

[v0.0.2] Bug Fixes - 2024-08-19

[v0.0.2] Bug Fixes - 2024-08-19 #17

Workflow file for this run

name: 'typedoc'
on:
release:
types: [published]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: yarn install --frozen-lockfile
# Generate your TypeDoc documentation
- run: yarn docs
# https://github.com/actions/upload-pages-artifact
- uses: actions/upload-pages-artifact@v3
with:
path: ./docs # This should be your TypeDoc "out" path.
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
# https://github.com/actions/deploy-pages
uses: actions/deploy-pages@v4