Migrate to Kotlin DSL & Misc. Improvements #202
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: Build | |
on: | |
pull_request: | |
branches: | |
- master | |
- development | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download repository | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- name: Build with Gradle | |
run: | | |
bash ./gradlew build --stacktrace | |
- name: Store APK file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: apk-files | |
path: | | |
app/build/outputs/apk/debug/app-debug.apk |