diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e2c243c..4b134f6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,6 +21,23 @@ jobs: - uses: actions/checkout@v3 + + + + - name: Install Xamarin.iOS + run: brew install --cask xamarin-ios + + - name: Download Visual Studio for Mac + run: curl https://download.visualstudio.microsoft.com/download/pr/ceb0ea3f-4db8-46b4-8dc3-8049d27c0107/91eb158e928097dcb6e42ece2db7ebac/visualstudioformac-17.6.7.417-arm64.dmg -o /tmp/vsformac.dmg + + - name: Mount Visual Studio for Mac dmg + run: hdiutil attach /tmp/vsformac.dmg + + - name: Extract MSBuild + run: cp -R /Volumes/Visual\ Studio/Visual\ Studio.app/Contents/MonoBundle/MSBuild/Current/bin /tmp/msbuild + + + - name: Setup .NET Core SDK 5.0.x uses: actions/setup-dotnet@v2 with: