Skip to content

Commit

Permalink
enable long paths for windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
samizdatco committed Dec 8, 2024
1 parent 5e48dc9 commit 7b76483
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ jobs:
runs-on: windows-latest

steps:
- name: Enable long paths
run: git config --system core.longpaths true

- name: Checkout repository
uses: actions/checkout@v4

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
- 22

steps:
- name: Enable long paths (Windows only)
if: ${{ matrix.os == 'windows-latest' }}
run: git config --system core.longpaths true

- name: Checkout repository
uses: actions/checkout@v4

Expand Down

0 comments on commit 7b76483

Please sign in to comment.