From 26e7092a542a718c232510ca49172fe49f96b332 Mon Sep 17 00:00:00 2001 From: Steve Gontzes Date: Thu, 4 Jun 2026 19:38:12 -0400 Subject: [PATCH] Enable long paths for Windows releases --- .github/workflows/release.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ff3f272..c5ab427 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -453,6 +453,10 @@ jobs: outputs: windows_manifest: ${{ steps.generate-windows-manifest.outputs.windows_manifest }} steps: + - name: Enable Git long paths + shell: pwsh + run: git config --system core.longpaths true + - name: Checkout caller repo uses: actions/checkout@v5 with: