Set up continuous build for develop tip with GitHub actions.

This commit is contained in:
Antoine POPINEAU 2020-06-11 22:34:49 +02:00
parent 7dc4d3e0ee
commit aa9f2f03d7
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
1 changed files with 24 additions and 0 deletions

24
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Continuous develop build
on:
push:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: ./gradlew assembleDebug
- name: Create release
uses: eine/tip@gha-tip
with:
token: ${{ secrets.GITHUB_TOKEN }}
cwd: ${{ github.workspace }}
files: app/build/outputs/apk/debug/app-debug.apk