Skip to content

Commit

Permalink
Update apk.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rostopira authored Jun 19, 2021
1 parent 1f4b016 commit debefe5
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/apk.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
name: Build & Publish Release APK
name: Build & Publish Debug APK

on:
push:
tags:
- '*'

push:
branches:
- master
jobs:
Gradle:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: setup jdk
- uses: actions/checkout@v1
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 1.8
- name: Make Gradle executable
run: chmod +x ./gradlew
- name: Build Release APK
run: ./gradlew assembleRelease
- name: Build with Gradle
run: ./gradlew build
- name: Build Debug APK
run: ./gradlew assembleDebug
- name: Releasing using Hub
uses: kyze8439690/action-release-releaseapk@master
uses: ShaunLWM/action-release-debugapk@master
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
APP_FOLDER: app
RELEASE_TITLE: New Build

0 comments on commit debefe5

Please sign in to comment.