Skip to content

Build IPA

Build IPA #10

Workflow file for this run

name: Build IPA
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build-ipa:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.2'
architecture: x64
- name: Build iOS
run: |
flutter pub get
flutter build ios --release --verbose --no-codesign
- name: Create IPA
run: |
mkdir ./payload/
mv ./build/ios/iphoneos/Runner.app/ ./payload
zip -qq -r -9 ./app-release.ipa ./payload
- name: Upload IPA
uses: actions/upload-artifact@v2
with:
name: release-ipa
path: ./app-release.ipa
if-no-files-found: error