From 8f741db723fab40f961a94abefc967c17ec6795c Mon Sep 17 00:00:00 2001 From: Rob Bos Date: Fri, 21 Jul 2023 12:58:23 +0000 Subject: [PATCH] Show runner temp --- .github/workflows/testing.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index e7fe5ba..2758f49 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -38,11 +38,13 @@ jobs: - shell: pwsh run: | # check the contents of the current dir + echo $env:RUNNER_TEMP + cd $env:RUNNER_TEMP Write-Host "Where are we? [$pwd]" ForEach ($file in Get-ChildItem) { Write-Host "- $($file.Name)" - } + } - shell: pwsh run: |