-
-
Notifications
You must be signed in to change notification settings - Fork 23
66 lines (55 loc) · 1.63 KB
/
release-apk.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
name: Build and Release APK
on:
workflow_dispatch:
push:
tags:
- "v*"
jobs:
build-docs:
uses: ./.github/workflows/build-docs.yml
build:
needs:
- build-docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Write key
run: |
if [ ! -z "${{ secrets.KEYSTORE }}" ]; then
{
echo storePassword='${{ secrets.KEYSTORE_PASSWORD }}'
echo keyPassword='${{ secrets.KEY_PASSWORD }}'
echo keyAlias='${{ secrets.KEY_ALIAS }}'
echo storeFile='../keystore.jks'
} > keystore.properties
echo '${{ secrets.KEYSTORE }}' | base64 -d > keystore.jks
fi
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Move artifact to assets
run: |
cd ./github-pages
tar xvf artifact.tar && rm artifact.tar
cd ../
mkdir ./app/src/main/assets
mv ./github-pages ./app/src/main/assets/XtMapper-docs
- name: Build with Gradle
run: ./gradlew app:assembleRelease
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: 'app/build/outputs/apk/release/*.apk'
asset_name: app-release.zip
tag: v2.3.1
overwrite: true
file_glob: true
draft: true