forked from openboard-team/openboard
-
Notifications
You must be signed in to change notification settings - Fork 7
68 lines (56 loc) · 1.92 KB
/
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
name: Testing - build and release app
on:
push:
branches:
- 'develop'
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
apk:
name: Generate and upload APK to Discord
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: 17
cache: 'gradle'
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- name: Create debug keystore
run: |
echo "${{ secrets.CI_KEYSTORE }}" > debug.keystore.asc
gpg -d --passphrase "${{ secrets.CI_KEYSTORE_DECRYPT }}" --batch debug.keystore.asc > /home/runner/.android/debug.keystore
- name: Build debug APK
run: bash ./gradlew assembleCi --stacktrace
- name: set apk name env
run: echo "APK_NAME=$(basename app/build/outputs/apk/ci/*.apk .apk)" >> $GITHUB_ENV
- name: Upload APK
uses: actions/upload-artifact@v1
with:
name: ${{ env.APK_NAME }}
path: app/build/outputs/apk/ci/${{ env.APK_NAME }}.apk
- name: Upload to Discord
uses: sinshutu/[email protected]
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
with:
args: app/build/outputs/apk/ci/${{ env.APK_NAME }}.apk
- name: Report build status to Discord
uses: sarisia/actions-status-discord@v1
if: failure()
with:
title: "Build Key Mapper GUI Keyboard apk"
webhook: ${{ secrets.DISCORD_BUILD_STATUS_WEBHOOK }}