From ea4b09366c210a89357e5147139470003df926e7 Mon Sep 17 00:00:00 2001 From: Rhuan Barreto Date: Sat, 28 Feb 2026 05:07:53 +0100 Subject: [PATCH] fix(ci): add auto-install to deploy-docs toolchain setup The deploy-docs workflow was missing `auto-install: true` on moonrepo/setup-toolchain, causing `bun: command not found` in CI. Matches the pattern used in code-pull-request.yml. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/deploy-docs.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index 6a98cd59..3f960b71 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -28,6 +28,8 @@ jobs: - name: Setup toolchain uses: moonrepo/setup-toolchain@v0 + with: + auto-install: true - name: Install dependencies run: bun install --frozen-lockfile