2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-05-06 09:18:54 +00:00
Oliver ba409660f4
More iOS workflow fixes (#367)
* More iOS workflow fixes

* revert to building android in debug

- Needs signing key otherwise
2023-06-12 23:29:45 +10:00

44 lines
894 B
YAML

# Build iOS version of the app
name: iOS
on:
push:
branches:
- master
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.4'
channel: 'stable'
- name: Collect Translation Files
run: |
cd lib/l10n
python3 collect_translations.py
- name: Build for iOS
run: |
flutter upgrade
flutter pub get
cd ios
pod repo update
pod install
cd ..
cp lib/dummy_dsn.dart lib/dsn.dart
flutter build ios --release --no-codesign --no-tree-shake-icons