Files
notes/.gitea/workflows/deploy.yaml
Jay ca3f7cebca
Some checks failed
Build Notes Site / build (push) Failing after 10s
rename
2026-03-03 11:00:51 +00:00

21 lines
357 B
YAML

name: Build Notes Site
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: python:3.13-slim
steps:
- uses: actions/checkout@v4
- name: Install mkdocs
run: pip install -r ci/mkdocs/requirements.txt
- name: Build site
run: mkdocs build --clean --site-dir /public