-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (49 loc) · 1.59 KB
/
release.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
on:
push:
branches: [master]
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.6.0
- name: Setup JAVA 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Debug Base64 String
run: |
echo "${{ secrets.SIGNING_KEY_STORE_BASE64 }}"
- name: Decode Keystore
run: |
chmod 600 /tmp/keystore.jks
echo "${{ secrets.SIGNING_KEY_STORE_BASE64 }}" | base64 --decode > /tmp/keystore.jks
ls -l /tmp/keystore.jks
- name: Build Release apk
env:
SIGNING_KEY_STORE_PATH: /tmp/keystore.jks
SIGNING_KEY_ALIAS: ${{ secrets.SIGNING_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PASSWORD }}
run: ./gradlew assembleRelease
- name: Capture Gradle Output
run: ./gradlew assembleRelease --debug
- name: List files for debugging
run: ls -R app/build/outputs/apk/release/
- name: Upload Release Build to Artifacts
uses: actions/upload-artifact@v3
with:
name: release-artifacts
paths: |
app/build/outputs/apk/release/
- name: Create Github Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
prerelease: false
files: |
app/build/outputs/apk/release/*.apk