-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (43 loc) · 1.5 KB
/
flutter_ios_build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Flutter iOS Build
defaults:
run:
working-directory: das_client
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
paths:
- 'das_client/**'
pull_request:
paths:
- 'das_client/**'
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.3'
- name: Prepare Flutter Build
run: |
flutter pub get
flutter pub run build_runner build --delete-conflicting-outputs
- name: Build iOS App DEV
run: flutter build ipa --flavor dev -t lib/main_dev.dart --release --no-codesign
- name: Build iOS App INTE
run: flutter build ipa --flavor inte -t lib/main_inte.dart --release --no-codesign
- name: Build iOS App PROD
run: flutter build ipa --flavor prod -t lib/main_prod.dart --release --no-codesign