Skip to content

document all the plugins (#21) #19

document all the plugins (#21)

document all the plugins (#21) #19

Workflow file for this run

name: Deploy docs site
on:
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
docs:
runs-on: ubuntu-latest
name: Deploy docs site
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: "npm"
- name: Install project deps
run: npm install
- name: Install docs site deps
run: cd site && npm install
- name: Build project
run: npm run build
- name: Build docs site
run: npm run site:build
- name: Build API docs
run: npm run site:api
- name: Fix splash image for API docs page
run: |
mkdir -p site/build/site/static/img
cp site/static/img/splash.png site/build/site/static/img/
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'site/build'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4