Skip to content

docs: routing options in install + full OperatorConfig reference #10

docs: routing options in install + full OperatorConfig reference

docs: routing options in install + full OperatorConfig reference #10

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [main, master]
paths:
- 'docs/**'
- '.github/workflows/docs.yml'
workflow_dispatch:
env:
# Run JS-based actions on Node 24 now (silences the Node 20 deprecation warning)
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: npm
cache-dependency-path: docs/package-lock.json
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Install dependencies
working-directory: docs
run: npm ci
- name: Build documentation
working-directory: docs
run: npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/dist
deploy:
name: Deploy
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4