Skip to content

Commit

Permalink
Fixed build-ios workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
al-af committed May 15, 2024
1 parent 4bc31d1 commit 061800c
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,21 @@ jobs:
with:
channel: stable
flutter-version: 3.19.0
- run: flutter --version

- run: flutter pub get
- name: Flutter version
run: flutter --version

- name: Building IPA
- name: Install Flutter dependencies
run: |
cd example
flutter build ipa
flutter pub get
- name: Install CocoaPods dependencies
run: |
cd example/ios
pod install --repo-update
- name: Build iOS app (testing build)
run: |
cd example
flutter build ios --debug --no-codesign

0 comments on commit 061800c

Please sign in to comment.