Skip to content

Commit 974232f

Browse files
Use faster temporary storage for Windows CI builds
1 parent 0ffd910 commit 974232f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
java: [ '17', '25' ]
3434
os: [ 'ubuntu-24.04', 'windows-latest' ]
3535
steps:
36+
- name: Use faster temporary storage (Windows)
37+
if: runner.os == 'Windows'
38+
run: |
39+
echo "TMP=$env:RUNNER_TEMP" | Out-File $env:GITHUB_ENV -Encoding utf8 -Append
40+
echo "TEMP=$env:RUNNER_TEMP" | Out-File $env:GITHUB_ENV -Encoding utf8 -Append
3641
- name: Checkout code
3742
uses: actions/checkout@v5
3843
with:

0 commit comments

Comments
 (0)