This repository was archived by the owner on Nov 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (52 loc) · 1.42 KB
/
build.yml
File metadata and controls
63 lines (52 loc) · 1.42 KB
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
60
61
62
63
name: BeMe Android Builder
on:
push:
branches:
- develop
- 'release/**'
pull_request:
branches: [ develop, 'release/**' ]
defaults:
run:
shell: bash
working-directory: .
jobs:
build:
name: Generate APK
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Gradle cache
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Change gradlew permissions
run: chmod +x ./gradlew
- name: Check Lint
run: ./gradlew ktlintCheck
- name: Build with Gradle
run: ./gradlew assembleDebug
- name: Upload APK
if: ${{ success() }}
uses: actions/upload-artifact@v2
with:
name: apk
path: app/build/outputs/apk/debug/
- name: Build App Bundle with Gradle
run: ./gradlew bundleRelease
- name: Upload Bundle
if: ${{ success() }}
uses: actions/upload-artifact@v2
with:
name: aab
path: app/build/outputs/bundle/release/