From a4d5c5ab1b599c204682193f131a2b4fdec1bfb7 Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Mon, 29 Sep 2025 10:49:34 +0200 Subject: [PATCH 1/2] [ci] Use same drive as checkouts for TMP on Windows --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3079f1b14..cf8693e9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,6 +87,11 @@ jobs: - windows-latest steps: - uses: actions/checkout@v5 + - name: 'Windows only, set TEMP to the same drive' + if: ${{ matrix.os == 'windows-latest' }} + run: | + mkdir "D:\\Temp" + echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV - name: Bootstrap Action Workspace id: bootstrap From d8a59cc1c5a5795b675479a1d97f3831f226cd35 Mon Sep 17 00:00:00 2001 From: Martijn Laarman Date: Mon, 29 Sep 2025 10:59:32 +0200 Subject: [PATCH 2/2] add to release workflow too --- .github/workflows/ci.yml | 1 + .github/workflows/release.yml | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf8693e9e..85516f93e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,6 +89,7 @@ jobs: - uses: actions/checkout@v5 - name: 'Windows only, set TEMP to the same drive' if: ${{ matrix.os == 'windows-latest' }} + # temporary waiting for https://github.com/parcel-bundler/parcel/pull/10095 to fix run: | mkdir "D:\\Temp" echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e42156b00..2b2c9a8e3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -147,6 +147,12 @@ jobs: - uses: actions/checkout@v5 with: ref: ${{ needs.release-drafter.outputs.tag_name }} + - name: 'Windows only, set TEMP to the same drive' + if: ${{ matrix.os == 'windows-latest' }} + # temporary waiting for https://github.com/parcel-bundler/parcel/pull/10095 to fix + run: | + mkdir "D:\\Temp" + echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV - name: Bootstrap Action Workspace id: bootstrap