action to build docs
Some checks failed
Build Documentation / build (push) Failing after 13s

This commit is contained in:
Tobias Brunner 2025-12-05 08:36:25 +01:00
parent 1a096bb62b
commit 4e624921c3
Signed by: tobru
SSH key fingerprint: SHA256:kOXg1R6c11XW3/Pt9dbLdQvOJGFAy+B2K6v6PtRWBGQ

View file

@ -0,0 +1,30 @@
name: Build Documentation
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install uv
uses: https://github.com/astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Build documentation
run: uv run zensical build
- name: Upload site artifact
uses: actions/upload-artifact@v5
with:
name: docs
path: site/
retention-days: 30