From eefdc3f3df399dee1d2afa169dd345fafa10636e Mon Sep 17 00:00:00 2001 From: Karun Agarwal Date: Tue, 27 Jan 2026 14:27:30 +0530 Subject: [PATCH] ci(windows): fix shasum PATH by exporting directly in build step --- .github/workflows/ci.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d09b5a92..ae11e2ab3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -226,10 +226,6 @@ jobs: done exit 1 - - name: Add Git usr/bin to PATH for shasum - run: | - echo "C:/Program Files/Git/usr/bin" >> "$GITHUB_PATH" - - name: Setup Node.js uses: actions/setup-node@v4 with: @@ -276,7 +272,9 @@ jobs: pnpm install --frozen-lockfile --ignore-scripts=false --config.engine-strict=false --config.enable-pre-post-scripts=true || pnpm install --frozen-lockfile --ignore-scripts=false --config.engine-strict=false --config.enable-pre-post-scripts=true - name: Run ${{ matrix.task }} (${{ matrix.runtime }}) - run: ${{ matrix.command }} + run: | + export PATH="/c/Program Files/Git/usr/bin:$PATH" + ${{ matrix.command }} checks-macos: if: github.event_name == 'pull_request'