This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
[feature] Folder creation capability: https://github.com/ARK-Builders… #84
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 the sample | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '11' | |
distribution: 'adopt' | |
- name: Build Debug APK | |
run: ./gradlew sample:assembleDebug | |
- name: Upload Debug APK | |
uses: actions/upload-artifact@v2 | |
with: | |
name: debug-apk | |
path: ./sample/build/outputs/apk/debug/sample-debug.apk |