This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
73 lines (61 loc) · 2.14 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
69
70
71
72
73
name: Android
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Checkout compat
uses: actions/checkout@v4
with:
repository: SanmerApps/ServiceManagerCompat
path: compat
- name: Set up signing key
if: github.ref == 'refs/heads/main'
run: |
if [ ! -z "${{ secrets.KEY_STORE }}" ]; then
echo keyStorePassword='${{ secrets.KEY_STORE_PASSWORD }}' >> signing.properties
echo keyAlias='${{ secrets.KEY_ALIAS }}' >> signing.properties
echo keyPassword='${{ secrets.KEY_PASSWORD }}' >> signing.properties
echo keyStore='${{ github.workspace }}/key.jks' >> signing.properties
echo ${{ secrets.KEY_STORE }} | base64 --decode > ${{ github.workspace }}/key.jks
fi
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- name: Set up Gradle
uses: gradle/actions/setup-gradle@v3
with:
validate-wrappers: true
gradle-home-cache-cleanup: true
- name: Build dependencies
working-directory: compat
run: ./gradlew publishToMavenLocal
- name: Build with Gradle
run: ./gradlew assembleRelease
- name: Get release name
if: success() && github.ref == 'refs/heads/main'
id: release-name
run: |
name=`ls app/build/outputs/apk/release/*.apk | awk -F '(/|.apk)' '{print $6}'` && echo "name=${name}" >> $GITHUB_OUTPUT
- name: Upload built apk
if: success() && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: ${{ steps.release-name.outputs.name }}
path: app/build/outputs/apk/release/*.apk
- name: Upload mappings
if: success() && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
with:
name: mappings
path: app/build/outputs/mapping/release