Skip to content

Commit acdcb03

Browse files
author
mousom
committed
Merge remote-tracking branch 'origin/master'
2 parents 42b5197 + a8260eb commit acdcb03

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/android.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Android CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: set up JDK 11
17+
uses: actions/setup-java@v3
18+
with:
19+
java-version: '11'
20+
distribution: 'temurin'
21+
cache: gradle
22+
23+
- name: Grant execute permission for gradlew
24+
run: chmod +x gradlew
25+
- name: Build with Gradle
26+
run: ./gradlew build
27+
28+
29+
- name: Upload Sawo Sample APK
30+
uses: actions/upload-artifact@v3.0.0
31+
with:
32+
name: app
33+
path: app/build/outputs/apk/debug/app-debug.apk

0 commit comments

Comments
 (0)