Skip to content

Merge pull request #4 from crispthinking/feature/action-fix #7

Merge pull request #4 from crispthinking/feature/action-fix

Merge pull request #4 from crispthinking/feature/action-fix #7

Workflow file for this run

name: Deploy TypeDoc on GitHub pages
on:
push:
branches:
main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: npm ci --no-audit
- run: npm run build --if-present
- run: npm run build:documentation
- name: Deploy to GitHub pages
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: docs
clean: true