From e95907ef06d96d6386e318a28cd571ca87b79732 Mon Sep 17 00:00:00 2001 From: Rob Bos Date: Fri, 21 Jul 2023 09:35:48 +0000 Subject: [PATCH] test without quotes --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 2450a63..f5da1bc 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -40,7 +40,7 @@ jobs: run: | # check the output file location to contain the expected content Write-Host "Found actions file location here [${{ steps.load-actions.outputs.actions-file }}]" - $content = Get-Content -Path "${{ steps.load-actions.outputs.actions-file }}" + $content = Get-Content -Path ${{ steps.load-actions.outputs.actions-file }} $actions = $content | ConvertFrom-Json if ($actions.Length -le 0) { Set-Content -Value "No actions found" -Path $env:GITHUB_STEP_SUMMARY