Files
notes/.gitea/workflows/deploy.yaml
Jay 704a35548c
Some checks failed
Build Notes Site / build (push) Failing after 16s
rename
2026-03-03 11:04:30 +00:00

38 lines
936 B
YAML

name: Build Notes Site
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: node:20-bookworm
steps:
- uses: actions/checkout@v4
- name: Install Python + MkDocs
run: |
apt-get update
apt-get install -y python3 python3-venv python3-pip
python3 -m venv .venv
.venv/bin/pip install --upgrade pip
.venv/bin/pip install -r ci/mkdocs/requirements.txt
- name: Build site into Docker volume
run: |
.venv/bin/mkdocs build --clean --site-dir /public
- name: Install Python + MkDocs
run: |
apt-get update
apt-get install -y python3 python3-venv python3-pip
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install -r ci/mkdocs/requirements.txt