Skip to content

docs: update documentation from NPipeline release refs/tags/v0.6.5 #133

docs: update documentation from NPipeline release refs/tags/v0.6.5

docs: update documentation from NPipeline release refs/tags/v0.6.5 #133

Workflow file for this run

name: Build Docusaurus Site
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
pages: write
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "22.x"
cache: "npm"
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Type check
run: npm run typecheck
- name: Upload build artifact
uses: actions/upload-artifact@v4
if: always()
with:
name: docusaurus-build
path: build/
retention-days: 5
- name: Upload Pages artifact
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
uses: actions/upload-pages-artifact@v3
with:
path: ./build
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
id: deployment
uses: actions/deploy-pages@v4