Move toolcache cleanup to separated script

pull/165/head
Vladimir Safonkin 5 years ago
parent 975b958e4c
commit 62230c5409

@ -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: |

@ -0,0 +1 @@
Write-Host $args[0]
Loading…
Cancel
Save