forked from prajapatihet/donorconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (33 loc) · 891 Bytes
/
build_apk.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
name: Build APK on Merge to Main
on:
push:
branches:
- main
jobs:
build-apk:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.19.5'
channel: stable
- name: Install dependencies
run: flutter pub get
continue-on-error: true
- name: Build APK
run: flutter build apk --release
continue-on-error: true
- name: Upload APK as artifact
uses: actions/upload-artifact@v3
with:
name: apk
path: build/app/outputs/flutter-apk/app-release.apk
continue-on-error: true