diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 91e983a..8dbb680 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,8 +19,13 @@ jobs: - name: Setup dotnet uses: actions/setup-dotnet@v1 with: - dotnet-version: '7.0.x' # SDK Version to use; x will use the latest version of the 7.0 channel - - run: node -p 'process.arch' + dotnet-version: '8.0.x' # SDK Version to use; x will use the latest version of the 8.0 channel + - if: runner.os == 'macOS' + name: Remove Mono + run: | + sudo rm -rf /Library/Frameworks/Mono.framework + sudo pkgutil --forget com.xamarin.mono-MDK.pkg + sudo rm /etc/paths.d/mono-commands - name: Install dependencies run: npm i - name: Run Dotnet Build