-
Notifications
You must be signed in to change notification settings - Fork 10
43 lines (34 loc) · 900 Bytes
/
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
name: Artifact Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build Release Apk
run: ./gradlew assembleRelease
- name: Build Debug Apk
run: ./gradlew assembleDebug
- name: Upload Release Apk
uses: actions/upload-artifact@v4
with:
name: "Release APK"
retention-days: 90
path: "app/build/outputs/apk/release/*.apk"
- name: Upload Debug Apk
uses: actions/upload-artifact@v4
with:
name: "Debug APK"
retention-days: 90
path: "app/build/outputs/apk/debug/*.apk"