-
Notifications
You must be signed in to change notification settings - Fork 38
70 lines (62 loc) · 2.17 KB
/
ci_android.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Automated-CI-Android
on:
workflow_dispatch:
inputs:
tag_name:
description: "Tag name for release. If set to nightly, the release will be a pre-release."
required: false
default: nightly
jobs:
Automated-CI-Android:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '23'
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Prepare Flutter Dependencies
run: |
flutter pub get
flutter pub global activate intl_utils
flutter pub global run intl_utils:generate
- name: Import Secrets
uses: actions/checkout@v2
with:
repository: DanXi-Dev/DanXi-secrets
path: secrets
ssh-key: ${{ secrets.SECRETS_SSH_KEY }}
- name: Populate Secrets
run: |
mv -f secrets/sksl_default.json CI/sksl_default.json
mv -f secrets/key.properties android/key.properties
mv -f secrets/danxi.keystore android/danxi.keystore
- name: Build APK
run: |
dart build_release.dart --target android --versionCode dummy
- if: github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name != 'nightly'
name: Release
uses: softprops/action-gh-release@v1
with:
files: build/app/outputs/flutter-apk/app-release.apk
prerelease: false
tag_name: ${{ github.event.inputs.tag_name }}
name: Release ${{ github.ref }}
generate_release_notes: true
fail_on_unmatched_files: true
- if: github.event_name == 'workflow_dispatch' && github.event.inputs.tag_name == 'nightly'
name: Release Nightly
uses: softprops/action-gh-release@v1
with:
files: build/app/outputs/flutter-apk/app-release.apk
prerelease: true
tag_name: nightly
name: Nightly build
generate_release_notes: true
fail_on_unmatched_files: true