Skip to content

Commit

Permalink
Create apk.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rostopira authored Jun 19, 2021
1 parent afc564d commit 1f4b016
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/apk.yml
Original file line number Diff line number Diff line change
@@ -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: kyze8439690/action-release-releaseapk@master
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
APP_FOLDER: app

0 comments on commit 1f4b016

Please sign in to comment.