From 95865033d04cebe95a3e4d2f654240bdcaa2996f Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Sun, 14 Dec 2025 12:28:32 -0500 Subject: [PATCH] fix(ci): enable long paths on Windows for mynah-ui snapshots Co-authored-by: Claude --- .github/workflows/release-binaries.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index 60fd661..0bef0e4 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -34,6 +34,10 @@ jobs: runs-on: ${{ matrix.os }} steps: + - name: Enable long paths (Windows) + if: runner.os == 'Windows' + run: git config --system core.longpaths true + - uses: actions/checkout@v4 - name: Install Rust