We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9de2fd3 commit 79ea25aCopy full SHA for 79ea25a
.github/workflows/release.yml
@@ -57,6 +57,13 @@ jobs:
57
- name: Checkout code
58
uses: actions/checkout@v4
59
60
+ - name: Enable long paths on Windows
61
+ if: runner.os == 'Windows'
62
+ run: |
63
+ git config --system core.longpaths true
64
+ reg add HKLM\SYSTEM\CurrentControlSet\Control\FileSystem /v LongPathsEnabled /t REG_DWORD /d 1 /f
65
+ shell: pwsh
66
+
67
- name: Install Rust toolchain
68
uses: dtolnay/rust-toolchain@stable
69
with:
0 commit comments