From 92b10d38aa9168557292baec4ab95827f7ec988a Mon Sep 17 00:00:00 2001 From: Arnaud Date: Fri, 23 Jan 2026 20:41:20 +0400 Subject: [PATCH] Enable long path error on windows --- .github/workflows/artifacts.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 755f323..cdd3dcb 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -29,6 +29,12 @@ jobs: lib_ext: dll steps: + - name: Enable long paths (Windows) + if: matrix.target.os == 'windows-latest' + shell: msys2 {0} + run: | + git config --global core.longpaths true + - name: Check out sources uses: actions/checkout@v4 with: