Build debug apk with GitHub Actions
This commit is contained in:
parent
24ada57392
commit
35f5e1dfc0
1 changed files with 7 additions and 2 deletions
9
.github/workflows/continuous.yml
vendored
9
.github/workflows/continuous.yml
vendored
|
|
@ -11,5 +11,10 @@ jobs:
|
||||||
uses: actions/setup-java@v1
|
uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
java-version: 1.8
|
java-version: 1.8
|
||||||
- name: Build with Gradle
|
- name: Build Debug APK with Gradle
|
||||||
run: ./gradlew build
|
run: ./gradlew assembleDebug
|
||||||
|
- name: Upload APK
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: App
|
||||||
|
path: ${{ github.workspace }}/app/build/outputs/apk/debug/app-debug.apk
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue