From f5f6f3c72c4c900b7d6e75aa09b517425090743c Mon Sep 17 00:00:00 2001 From: yliao Date: Mon, 27 Jul 2026 22:10:55 +0000 Subject: [PATCH] Fix Config file validation error Config validation error in build.jobs.build. Expected a dictionary, got type list ([True]). --- .readthedocs.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index a1911456d9..0ca33c0f97 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -16,11 +16,13 @@ build: jobs: # Empty build step to override and stop standard Sphinx/MkDocs execution build: - - true + html: + - mkdir -p $READTHEDOCS_OUTPUT/html + - cp -r doc/html/* $READTHEDOCS_OUTPUT/html/ + + # Copy your raw HTML directly to the hosted output folder post_build: - - mkdir -p $READTHEDOCS_OUTPUT/html - - cp -r doc/html/* $READTHEDOCS_OUTPUT/html/ # Build documentation in the "docs/" directory with Sphinx # sphinx: