diff options
| author | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-05-16 11:30:50 +0200 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-05-16 11:30:50 +0200 |
| commit | 11392995db7a3acabcf5b0293264f8f9d0ba4da9 (patch) | |
| tree | f32d9cc90c1d6338ba2aa66a952a0e0a66d6efab | |
| parent | d29a025a6a4cf45c4d33e3575c12986bd71ebeaf (diff) | |
| parent | 847726edb7fbf514d8b12a2ee8536c00e8a7b9e6 (diff) | |
| download | mullvadvpn-11392995db7a3acabcf5b0293264f8f9d0ba4da9.tar.xz mullvadvpn-11392995db7a3acabcf5b0293264f8f9d0ba4da9.zip | |
Merge branch 'allow-long-filenames-in-git-for-the-windows-github-runners-des-2148'
| -rw-r--r-- | .github/workflows/daemon.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/daemon.yml b/.github/workflows/daemon.yml index 8677f77dec..d90f766356 100644 --- a/.github/workflows/daemon.yml +++ b/.github/workflows/daemon.yml @@ -125,6 +125,11 @@ jobs: arch: arm64 runs-on: ${{ matrix.config.os }} steps: + # By default, the longest path a filename can have in git on Windows is 260 character. + - name: Set git config for long paths + run: | + git config --system core.longpaths true + - name: Checkout repository uses: actions/checkout@v4 |
