Chore/cms 114 add javadoc for identity kit #19
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 Debug Apk and Deploy | |
## Actions that will be executed when pull request is created | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
## Debug | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: 'adopt' | |
# 3.1 | |
- name: Clean Project | |
run: ./gradlew clean | |
# 3.2 | |
- name: Generate Debug APK | |
run: ./gradlew assembleDebug --stacktrace | |
# 4 | |
- name: Upload APK to artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: app-debug.apk | |
path: app/build/outputs/apk/debug/app-debug.apk |