From 124a1e855d741ee3773b42caf74aea395ca6599f Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Mon, 13 Apr 2026 04:34:04 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20repair=20CI=20=E2=80=94=20metadata.yaml?= =?UTF-8?q?=20parse=20+=20build=20script=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. build/metadata.yaml: removed trailing '---' that caused yaml.safe_load to fail with 'expected a single document in the stream'. Pandoc accepts metadata without the closing delimiter. 2. .gitea/workflows/build.yml: changed build-verify.py reference from scripts/build-verify.py (doesn't exist) to build/build.py --md (the actual build script). --- .gitea/workflows/build.yml | 2 +- build/metadata.yaml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 86f8b07..1b17463 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -45,7 +45,7 @@ jobs: echo "PASS: All headings valid" - name: Run full build verification - run: python3 scripts/build-verify.py --ci + run: python3 build/build.py --md - name: Verify concatenation produces valid output run: | diff --git a/build/metadata.yaml b/build/metadata.yaml index ce3e27a..aed887b 100644 --- a/build/metadata.yaml +++ b/build/metadata.yaml @@ -38,4 +38,3 @@ header-includes: - \fancyhead[RE]{\textit{The Testament}} - \fancyhead[LO]{\textit{\leftmark}} - \fancyfoot{} ---- \ No newline at end of file