Skip to content

Commit 984e91b

Browse files
committed
Support deep Windows Rust dependencies
1 parent 463d672 commit 984e91b

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ jobs:
2727
- name: Checkout source code
2828
uses: actions/checkout@v4
2929

30+
- name: Enable Windows long paths
31+
if: runner.os == 'Windows'
32+
shell: bash
33+
run: |
34+
git config --global core.longpaths true
35+
echo "CARGO_NET_GIT_FETCH_WITH_CLI=true" >> "$GITHUB_ENV"
36+
3037
- name: Extract project version
3138
shell: bash
3239
run: |

0 commit comments

Comments
 (0)