diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 478bccd..5d568a4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,8 @@ jobs: steps: - name: Enable long paths run: | - New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force + New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force; + git config --global core.longpaths true shell: pwsh - uses: actions/checkout@v3 diff --git a/.github/workflows/test_pr.yml b/.github/workflows/test_pr.yml index 6541f17..9e8a72f 100644 --- a/.github/workflows/test_pr.yml +++ b/.github/workflows/test_pr.yml @@ -29,7 +29,8 @@ jobs: - name: Enable long paths run: | - New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force + New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force; + git config --global core.longpaths true shell: pwsh - uses: actions/checkout@v3 diff --git a/.github/workflows/test_typing.yml b/.github/workflows/test_typing.yml index b9965e8..a4381c6 100644 --- a/.github/workflows/test_typing.yml +++ b/.github/workflows/test_typing.yml @@ -11,7 +11,8 @@ jobs: steps: - name: Enable long paths run: | - New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force + New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force; + git config --global core.longpaths true shell: pwsh - uses: actions/checkout@v3