website/.readthedocs.yaml
Andrei Jiroh Halili 2081d5fb54
ci(global): optmize build scripts and fix error on RTD side
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
2025-06-14 02:26:58 +08:00

37 lines
1 KiB
YAML

# Read the Docs configuration file for MkDocs projects
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Set the version of Python and other tools you might need
build:
os: ubuntu-24.04
tools:
python: "3.13"
#nodejs: 22
jobs:
post_checkout:
# Needed for some plugins/extensions to work
- git fetch --unshallow || true
create_environment:
- pipenv install
build:
html:
- FF_GENERATE_SOCIAL_CARDS=true pipenv run build-staging -d "$READTHEDOCS_OUTPUT/html/"
post_build:
- |
mkdir $READTHEDOCS_OUTPUT/html/api
git rev-parse HEAD > $READTHEDOCS_OUTPUT/html/api/commit
#- |
# cp -rv markdown/.well-known $READTHEDOCS_OUTPUT/html/.well-known
# cp -rv $READTHEDOCS_OUTPUT/html/assets/images/favicon.png $READTHEDOCS_OUTPUT/favicon.ico
apt_packages:
- libcairo2-dev
- libfreetype6-dev
- libffi-dev
- libjpeg-dev
- libpng-dev
- libz-dev
- pngquant
- pipenv