mirror of
https://github.com/stan220/Zte-F660-Control.git
synced 2026-09-10 07:28:47 +00:00
28 lines
554 B
YAML
28 lines
554 B
YAML
name: Android CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: set up JDK 1.8
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: 1.8
|
|
|
|
- name: Build with Gradle
|
|
run: ./gradlew assembleDebug
|
|
|
|
- name: Debug APK Publisher
|
|
uses: ShaunLWM/action-release-debugapk@0.0.5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
|
APP_FOLDER: app
|
|
RELEASE_TITLE: New Build
|