From 33d8a3bfc21ff3206dc29adc7e8807c8a2bf8c58 Mon Sep 17 00:00:00 2001 From: afc163 Date: Fri, 3 Apr 2026 14:23:41 +0800 Subject: [PATCH] fix(ci): disable utoo binary cache to fix Windows clone failure The cached utoo binary on Windows has an incorrect cache path configuration, causing package clone operations to fail with paths like "D:\.cache\nm\..." instead of the correct working directory path. Disabling the binary cache ensures utoo is freshly installed from npm, which correctly resolves the cache directory path. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5787bd14..381f234e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,8 @@ jobs: node-version: ${{ matrix.node_version }} - run: echo ${{github.ref}} - uses: utooland/setup-utoo@v1 + with: + cache-utoo: false - run: ut - run: ut lint - run: ut build