v2.0.0 #84
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Debug Build for PR | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: 'gradle' | |
- name: Download dependencies | |
run: ./gradlew androidDependencies | |
- name: Build debug | |
run: ./gradlew assembleDebug | |
- name: Upload debug APK | |
uses: actions/upload-artifact@v2 | |
with: | |
name: debug.apk | |
path: app/build/outputs/apk/debug/app-debug.apk |