-
Notifications
You must be signed in to change notification settings - Fork 4
41 lines (36 loc) · 1004 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
name: Android CI
on:
push:
branches: [ "android-pipeline" ]
pull_request:
branches: [ "android-pipeline" ]
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: 'temurin'
cache: gradle
- name: Grant execute permission for gradlew
working-directory: ./android-project
run: chmod +x gradlew
- name: Build with Gradle
working-directory: ./android-project
run: ./gradlew buildRelease
- name: debug
uses: actions/upload-artifact@v4
with:
name: files
path: ${{ github.workspace }}/
overwrite: true
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: resl.apk
path: ${{ github.workspace }}/android-project/app/build/outputs/apk/release/app-release-unsigned.apk
overwrite: true
if-no-files-found: error