-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (47 loc) · 1.55 KB
/
apk-maker.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
name: APK Maker
on:
push:
branches:
- main
jobs:
apk:
name: Generate Debug APK
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
# This step removes the current gradle cache to avoid any caching issues
- name: Remove current gradle cache
run: rm -rf ~/.gradle
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
gradle-${{ runner.os }}-
# Load google-services.json and local.properties from the secrets
- name: Decode secrets
env:
GOOGLE_SERVICES: ${{ secrets.GOOGLE_SERVICES }}
LOCAL_PROPERTIES: ${{ secrets.LOCAL_PROPERTIES }}
run: |
echo "$GOOGLE_SERVICES" | base64 --decode > ./app/google-services.json
echo "$LOCAL_PROPERTIES" | base64 --decode > ./local.properties
- name: Grant execute permission for gradlew
run: |
chmod +x ./gradlew
- name: Assemble app debug APK
run: bash ./gradlew assembleDebug --stacktrace
- name: Upload app APK
uses: actions/upload-artifact@v3
with:
name: app-debug
path: app/build/outputs/apk/debug/app-debug.apk