From 11c68fc2ba20235ad446e118b56dd0706a71f3fc Mon Sep 17 00:00:00 2001 From: Jimisola Laursen Date: Sat, 7 Mar 2026 21:20:08 +0100 Subject: [PATCH] fix(ci): correct local content source url in Antora playbook Change `url: .` to `url: ./../` for the local content source. Antora resolves bare `..` paths from CWD rather than the playbook directory, but dot-prefixed paths (`./../`) resolve relative to the playbook file. Since the playbook is in `docs/`, `./../` correctly resolves to the repository root where the `.git` directory exists. Signed-off-by: jimisola --- docs/antora-playbook.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/antora-playbook.yml b/docs/antora-playbook.yml index 4207d24..43dbe5c 100644 --- a/docs/antora-playbook.yml +++ b/docs/antora-playbook.yml @@ -10,7 +10,7 @@ site: content: sources: - - url: . + - url: ./../ branches: HEAD start_path: docs - url: https://github.com/reqstool/reqstool-client