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
72 lines (60 loc) · 2.17 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
name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Set up signing key
if: github.ref == 'refs/heads/main'
run: |
if [ ! -z "${{ secrets.KEY_STORE }}" ]; then
echo keyStorePassword='${{ secrets.KEY_STORE_PASSWORD }}' >> local.properties
echo keyAlias='${{ secrets.KEY_ALIAS }}' >> local.properties
echo keyPassword='${{ secrets.KEY_PASSWORD }}' >> local.properties
echo keyStore='${{ github.workspace }}/key.jks' >> local.properties
echo ${{ secrets.KEY_STORE }} | base64 --decode > ${{ github.workspace }}/key.jks
fi
- name: Download JBR 17
run: |
download_url="https://cache-redirector.jetbrains.com/intellij-jbr/jbrsdk-17.0.7-linux-x64-b979.4.tar.gz"
wget -O $RUNNER_TEMP/jbr.tar.gz $download_url
- name: Set up JBR 17
uses: actions/setup-java@v3
with:
distribution: 'jdkfile'
jdkFile: ${{ runner.temp }}/jbr.tar.gz
java-version: '17'
architecture: x64
- name: Set up Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-home-cache-cleanup: true
- 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@v3
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@v3
with:
name: mappings
path: app/build/outputs/mapping/release