Skip to content

Commit f6b8ee8

Browse files
AnzeKovacMartin Novak
authored and
Martin Novak
committed
build
1 parent f62cbf8 commit f6b8ee8

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build
2+
on: [pull_request, push]
3+
4+
jobs:
5+
apk:
6+
name: Generate APK
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v1
11+
- name: Build the app
12+
run: ./gradlew build
13+
- name: Output results
14+
run: |
15+
tree app/build
16+
- name: Upload APK
17+
uses: actions/upload-artifact@v1
18+
with:
19+
name: apk
20+
path: app/build/outputs/apk/debug/app-debug.apk

0 commit comments

Comments
 (0)