From a575c7534976145a48197fb84fdde5b4db22fd32 Mon Sep 17 00:00:00 2001 From: Chris Manson Date: Fri, 21 Jun 2024 13:14:12 +0100 Subject: [PATCH] test D drive for windows temp --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 055bc35a9..74aaa62ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: use_lockfile: false - name: Work around windows short path alias # https://github.com/actions/runner-images/issues/712 if: runner.os == 'Windows' - run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV + run: new-item D:\temp -ItemType Directory; echo "TEMP=D:\temp" >> $env:GITHUB_ENV - name: suite run: ${{ matrix.command }} working-directory: ${{ matrix.dir }}