Add GitHub Actions build script.
This commit is contained in:
parent
99059a261f
commit
916ad91b82
1 changed files with 26 additions and 0 deletions
26
.github/workflows/android.yml
vendored
Normal file
26
.github/workflows/android.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: Build & Publish Release APK
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
Gradle:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: setup jdk
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 11
|
||||
- name: Make Gradle executable
|
||||
run: chmod +x ./gradlew
|
||||
- name: Build Release APK
|
||||
run: ./gradlew assembleRelease
|
||||
- name: Releasing using Hub
|
||||
uses: sangatdesai/release-apk@main
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.TOKEN }}
|
||||
APP_FOLDER: app
|
Loading…
Reference in a new issue