Merge pull request #22 from logos-storage/fix/git-long-paths-error

fix: enable long path error on windows
This commit is contained in:
Arnaud 2026-01-24 11:37:31 +04:00 committed by GitHub
commit d27de5ba32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,6 +29,13 @@ jobs:
lib_ext: dll
steps:
- name: Enable long paths (Windows)
if: matrix.target.os == 'windows-latest'
shell: powershell
run: |
Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem' -Name 'LongPathsEnabled' -Value 1
git config --system core.longpaths true
- name: Check out sources
uses: actions/checkout@v4
with: