We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76b0ecc commit 16942d8Copy full SHA for 16942d8
.github/workflows/ios.yml
@@ -0,0 +1,31 @@
1
+name: Build iOS App
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ build:
10
+ runs-on: macos-latest
11
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v2
15
16
+ - name: Set up Flutter
17
+ uses: subosito/flutter-action@v2
18
+ with:
19
+ flutter-version: 'stable'
20
21
+ - name: Install dependencies
22
+ run: flutter pub get
23
24
+ - name: Build iOS app
25
+ run: flutter build ios --release
26
27
+ - name: Upload artifact
28
+ uses: actions/upload-artifact@v2
29
30
+ name: build-output
31
+ path: build/ios/ipa
0 commit comments