Uninstall location

This commit is contained in:
Zachary Eisinger 2020-08-10 12:00:36 -07:00
parent b7f3cf0b3c
commit 9ce8cb75e7

View File

@ -38,12 +38,18 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Clear tool cache
if: runner.os != 'windows'
- name: Clear tool cache (macOS)
if: runner.os == 'macos'
run: |
echo $PATH
dotnet --info
rm -rf "$HOME/.dotnet"
rm -rf "/Users/runner/.dotnet"
- name: Clear tool cache (Ubuntu)
if: runner.os == 'linux'
run: |
echo $PATH
dotnet --info
rm -rf "/usr/share/dotnet"
- name: Clear tool cache (Windows)
if: runner.os == 'windows'
run: |
@ -77,7 +83,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Clear tool cache
run: rm -rf "$HOME/.dotnet"
run: rm -rf "/usr/share/dotnet"
- name: Setup dotnet 3.1.201
uses: ./
with:
@ -94,7 +100,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Clear tool cache
run: rm -rf "$HOME/.dotnet"
run: rm -rf "/usr/share/dotnet"
- name: Setup dotnet 3.1.201
uses: ./
with: