From df929c53355731b8bb1089def2ec2a9a25600077 Mon Sep 17 00:00:00 2001 From: Rootiest Date: Tue, 18 Aug 2026 21:50:43 -0400 Subject: [PATCH] fix(ci): install fish in build-docs workflow The registry round-trip test spawns a real fish subprocess to verify conf.d/__fish_config_op_registry.fish sources correctly, but the runner image has no fish binary, so the workflow failed with FileNotFoundError. --- .github/workflows/build-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index fb12975..ba801c3 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -27,7 +27,7 @@ jobs: - name: Install dependencies run: | sudo apt-get update -qq - sudo apt-get install -y pandoc python3-yaml + sudo apt-get install -y pandoc python3-yaml fish - name: Generate concatenated markdown run: python3 docs/build-manual.py --concat -o docs/fish-config.md