Skip to content

Docs: Add v2 rewrite while preserving v1.0 to support ODE major release 1.0 #10

Docs: Add v2 rewrite while preserving v1.0 to support ODE major release 1.0

Docs: Add v2 rewrite while preserving v1.0 to support ODE major release 1.0 #10

Workflow file for this run

name: Documentation CI & Deploy
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
jobs:
# Validation job - must pass before deployment
validate:
name: Validate Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
# Fast validation tests first
- name: Run Fast Validation Tests
run: npm run test
# Full build for complete validation
- name: Build Docusaurus (Full Validation)
env:
CI: true
run: npm run build
build:
name: Build Website
needs: validate
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: build
deploy:
name: Deploy to GitHub Pages
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4