Skip to content

Commit 3b312c5

Browse files
committed
allow long-paths in git operations
1 parent 343fe61 commit 3b312c5

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,12 @@ jobs:
128128
DUNE_PROFILE: release
129129

130130
steps:
131-
- name: "Windows: Set git to use LF"
131+
- name: "Windows: Set git config"
132132
if: runner.os == 'Windows'
133133
run: |
134-
git config --global core.autocrlf false
135-
git config --global core.eol lf
134+
git config --system core.autocrlf false
135+
git config --system core.eol lf
136+
git config --system core.longpaths true
136137
137138
- name: Checkout
138139
uses: actions/checkout@v4

0 commit comments

Comments
 (0)