-
-
Notifications
You must be signed in to change notification settings - Fork 15
41 lines (32 loc) · 877 Bytes
/
debug.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
name: Debug CI
on:
push:
branches: [ "kt-rewrite" ]
pull_request:
branches: [ "kt-rewrite" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '17'
- name: Give permission to executable
run: chmod +x gradlew
- name: Clear build cache
uses: gradle/[email protected]
with:
gradle-version: nightly
arguments: clean
- name: Build Lite Debug APK
run: ./gradlew assembleLiteDebug
- name: Upload Lite Debug APK
uses: actions/upload-artifact@v3
with:
name: lite-debug-apk
path: app/build/outputs/apk/lite/debug