diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7ccefbf6..af3668c0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,5 +16,5 @@ jobs: run: sudo xcode-select -s "/Applications/Xcode_15.0.app" - name: Build / Test run: swift build -v - - name: Build (macos, ios) - run: xcodebuild -scheme Site -destination "platform=macOS" -destination "platform=iOS Simulator,name=iPhone 15" + - name: Build iOS / macOS + run: xcodebuild -verbose -scheme Site -destination "generic/platform=iOS Simulator" -destination "generic/platform=macOS" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 397764c7..b9a3f508 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,5 +16,5 @@ jobs: run: sudo xcode-select -s "/Applications/Xcode_15.0.app" - name: Build / Test run: swift build -v - - name: Build (macos, ios) - run: xcodebuild -scheme Site -destination "platform=macOS" -destination "platform=iOS Simulator,name=iPhone 15" + - name: Build iOS / macOS + run: xcodebuild -verbose -scheme Site -destination "generic/platform=iOS Simulator" -destination "generic/platform=macOS"