We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b22cd34 commit 24d3401Copy full SHA for 24d3401
.github/workflows/test-prime.yml
@@ -60,6 +60,14 @@ jobs:
60
shell: bash # for --
61
62
steps:
63
+ - name: Enable Long Path Support
64
+ run: |
65
+ # Enable long path support via registry
66
+ New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
67
+ # Also enable for current process
68
+ Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1
69
+ shell: powershell
70
+
71
- name: 'Show environment'
72
run: |
73
uname -a
0 commit comments