We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24d5c8e commit 5c84301Copy full SHA for 5c84301
.github/workflows/build.yml
@@ -11,12 +11,21 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v2
14
+
15
- name: Set up JDK
16
uses: actions/setup-java@v2
17
with:
18
distribution: 'zulu'
- java-version: '15'
19
+ java-version: '8'
20
21
- name: Make gradlew executable
22
run: chmod +x ./gradlew
- - name: Build with Gradle
- run: ./gradlew build
23
24
+ - name: Build debug APK
25
+ run: ./gradlew assembleDebug --warning-mode all --stacktrace
26
27
+ - name: Upload APK
28
+ uses: actions/upload-artifact@v2
29
+ with:
30
+ name: app-debug
31
+ path: app/build/outputs/apk/debug/app-debug.apk
0 commit comments