From 8377abde3a2cec2c154b2314805b8310ceeea671 Mon Sep 17 00:00:00 2001 From: Amit Levy Date: Wed, 15 May 2024 12:38:27 +0300 Subject: [PATCH] Fixed build-ios workflow --- .github/workflows/build-ios.yml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index c5623e1..61f18fb 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -17,21 +17,14 @@ jobs: with: channel: stable flutter-version: 3.19.0 + - run: flutter --version - - name: Flutter version - run: flutter --version - - - name: Install Flutter dependencies + - name: Install dependency run: | cd example flutter pub get - - name: Install CocoaPods dependencies - run: | - cd example/ios - pod install --repo-update - - - name: Build iOS app (testing build) + - name: Building IPA run: | - cd example - flutter build ios --debug --no-codesign \ No newline at end of file + cd example/ios + xcodebuild build -scheme Runner -workspace Runner.xcworkspace -destination 'platform=iOS Simulator,name=iPhone 15' \ No newline at end of file