Skip to content

Feature/backgdrop occluder (#941) #201

Feature/backgdrop occluder (#941)

Feature/backgdrop occluder (#941) #201

Workflow file for this run

name: Publish documentation
on:
push:
paths:
- docs/**
branches: [ main ]
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 23.x
cache: npm
cache-dependency-path: ./docs/package.json
- name: Install dependencies
working-directory: docs
run: npm install --ignore-scripts
- name: Build
working-directory: docs
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4