Skip to content

Update engine branch from release-2.12 to release-2.13 #229

Update engine branch from release-2.12 to release-2.13

Update engine branch from release-2.12 to release-2.13 #229

Workflow file for this run

name: "Build and Deploy API Reference"
on:
workflow_dispatch:
push:
branches: [main]
paths-ignore:
- "README.md"
- "LICENSE"
- ".gitignore"
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build API Reference
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./docs
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