-
-
Notifications
You must be signed in to change notification settings - Fork 139
49 lines (39 loc) · 1.08 KB
/
dart.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 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: Dart
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build_android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.ACCESS_TOKEN }}
submodules: recursive
- uses: dart-lang/setup-dart@v1
with:
dart-sdk-version: '3.1.4'
- uses: subosito/[email protected]
with:
flutter-version: '3.10.0'
- name: Install dependencies
run: flutter pub get
- name: Build
run: flutter build apk --split-per-abi
- name: Upload APKs
run: |
mkdir -p artifacts
mv build/app/outputs/flutter-apk/*.apk artifacts/
shell: bash
- name: Archive build artifacts
uses: actions/upload-artifact@v3
with:
name: app-releases
path: artifacts/