Skip to content

docs: add null handling section to write-path page #99

docs: add null handling section to write-path page

docs: add null handling section to write-path page #99

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
paths: [docs/**]
workflow_dispatch:
permissions:
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
environment: github-pages
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: cd docs && npm ci
- run: cd docs && npx astro build
- uses: actions/upload-pages-artifact@v3
with:
path: docs/dist
- uses: actions/deploy-pages@v4