Skip to content

downgrade to fix toc #41

downgrade to fix toc

downgrade to fix toc #41

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- trunk
env:
NODE_VERSION: 20.x
jobs:
deploy:
name: Deploy
if: github.ref == 'refs/heads/trunk'
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Configure GitHub Pages
uses: actions/configure-pages@v4
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v3
with:
path: out
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4