Skip to content

docs: rework getting started and overview links #7

docs: rework getting started and overview links

docs: rework getting started and overview links #7

Workflow file for this run

name: Documentation
on:
push:
branches:
- master
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: docs/public
steps:
- uses: actions/configure-pages@v5
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- run: uv sync --locked --all-extras
- run: uv run zensical build --clean
- uses: actions/upload-pages-artifact@v4
with:
path: docs/public/site
- uses: actions/deploy-pages@v4