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