From 81418f827f40ac4fd4aebc3600baa32910018048 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rton=20Braun?= Date: Wed, 16 Oct 2024 19:07:23 +0200 Subject: [PATCH] Attempt to fix iOS build --- .github/workflows/build-all.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 097f94b7..ad10b336 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -35,7 +35,7 @@ jobs: run: ./gradlew :androidApp:assembleDebug --stacktrace build-ios: - name: Build + name: Build iOS runs-on: macOS-latest steps: - name: Check out code @@ -48,7 +48,7 @@ jobs: - name: Set Xcode version run: sudo xcode-select -s /Applications/Xcode_15.3.app/Contents/Developer - name: iOS debug build - run: cd iosApp && xcodebuild -scheme "[Fleet] Xcode-app configuration" -configuration Debug -destination 'platform=iOS Simulator,OS=latest,name=iPhone 15' CODE_SIGNING_ALLOWED='NO' + run: cd iosApp && xcodebuild -target "iosApp" -configuration Debug -destination 'platform=iOS Simulator,OS=latest,name=iPhone 15' CODE_SIGNING_ALLOWED='NO' build-web: name: Build web