We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c34a3f commit e1438fdCopy full SHA for e1438fd
1 file changed
.github/workflows/build-release.yml
@@ -43,8 +43,13 @@ jobs:
43
runs-on: ${{ matrix.os }}
44
45
steps:
46
- # 1. Checkout — sparse on all platforms to exclude Docs/
47
- # (contains a pipe character in a filename, illegal on Windows NTFS)
+ # 1. Windows git rejects pipe characters ( | ) in filenames before sparse
+ # filtering even gets a chance to run. Disable that check globally first.
48
+ - name: Allow pipe characters in paths (Windows only)
49
+ if: matrix.platform == 'windows'
50
+ run: git config --global core.protectNTFS false
51
+
52
+ # 2. Checkout — sparse on all platforms to exclude Docs/
53
- name: Checkout
54
uses: actions/checkout@v4
55
with:
0 commit comments