From 5289aea9d15c6f1a0482f5bde6b6866f530621fa Mon Sep 17 00:00:00 2001 From: Matt Johnson-Pint Date: Wed, 15 Jun 2022 11:13:53 -0700 Subject: [PATCH] Package everything on macOS (#1719) --- .github/workflows/build.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8dae3c2a60..fda3d84d40 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -90,14 +90,9 @@ jobs: # list-tests: 'failed' - name: Pack - # only pack on windows since we need classic .net assemblies - if: startsWith(matrix.os, 'windows') - run: dotnet pack ${{ matrix.slnf }} -c Release --no-build - - - name: Pack (MAUI) - # only pack on macos since we need ios native targets included + # Only pack in one build environment. We'll use macOS so we can build for ios/maccatalyst targets if: startsWith(matrix.os, 'macos') - run: dotnet pack src/Sentry.Maui -c Release --no-build + run: dotnet pack ${{ matrix.slnf }} -c Release --no-build - name: Upload Verify Results if: failure()