mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-01 17:02:39 +00:00
34 lines
685 B
YAML
34 lines
685 B
YAML
|
name: Debug APK Builder
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: JDK 8 Setup
|
||
|
uses: actions/setup-java@v1
|
||
|
with:
|
||
|
java-version: 1.8
|
||
|
|
||
|
- name: Grant rights
|
||
|
run: chmod +x ./gradlew
|
||
|
|
||
|
- name: Build project
|
||
|
run: ./gradlew build
|
||
|
|
||
|
- name: Build APK
|
||
|
run: ./gradlew assembleDebug
|
||
|
|
||
|
- name: Upload to Artifacts
|
||
|
uses: actions/upload-artifact@v2
|
||
|
with:
|
||
|
name: 'MicroG'
|
||
|
path: play-services-core/build/outputs/apk/debug/play-services-core-debug.apk
|