diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 5d0b059..747ab3b 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -43,6 +43,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 + - name: Clear toolcache + shell: pwsh + run: __tests__/clear-toolcache.ps1 runner.os + - name: Clear tool cache (macOS) if: runner.os == 'macos' run: | diff --git a/__tests__/clear-toolcache.ps1 b/__tests__/clear-toolcache.ps1 new file mode 100644 index 0000000..d8bb85b --- /dev/null +++ b/__tests__/clear-toolcache.ps1 @@ -0,0 +1 @@ +Write-Host $args[0] \ No newline at end of file