-
-
Notifications
You must be signed in to change notification settings - Fork 6
50 lines (45 loc) · 1.06 KB
/
continuous_build.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
name: Continuous Builder
on:
workflow_dispatch:
push:
branches:
- '**'
paths-ignore:
- 'metadata/**'
- 'legal/**'
- '**.md'
- 'app/src/release/generated/baselineProfiles/**-prof.txt'
- 'app/**.pro'
- 'LICENSE'
- '.github/workflows/release-builder.yml'
- '.github/FUNDING.yml'
- '.editorconfig'
- '.idea/**'
pull_request:
jobs:
build:
name: Continuous Builder
runs-on: ubuntu-latest
steps:
- name: Checkout repo including backpack submodule
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
- name: Show backpack directory
run: |
cd backpack-apps
ls
cd ..
- name: Build APK
run: |
chmod +x ./gradlew
./gradlew assembleRelease --stacktrace
- name: List build output
run: |
cd app/build/outputs/apk/release/
ls