We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6aededb commit 5606219Copy full SHA for 5606219
.github/workflows/flutter-actions.yml
@@ -4,7 +4,20 @@ on:
4
workflow_dispatch:
5
6
jobs:
7
- build:
+ build-android:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Clone repository
11
+ uses: actions/checkout@v4
12
+ - name: Set up Flutter
13
+ uses: subosito/flutter-action@v2
14
+ with:
15
+ channel: stable
16
+ cache: true
17
+ - run: flutter pub get
18
+ - run: flutter build apk
19
+
20
+ build-ios:
21
runs-on: macos-latest
22
steps:
23
- name: Clone repository
@@ -13,6 +26,10 @@ jobs:
26
uses: subosito/flutter-action@v2
27
with:
28
channel: stable
29
30
+ - name: Update Cocoapods repo
31
+ run: pod repo update
32
+ - name: Install pods
33
+ run: cd ios && pod install && cd ..
34
- run: flutter pub get
35
- run: flutter build ios --release --no-codesign
- - run: flutter build apk
0 commit comments