Skip to content

Commit

Permalink
Create deployApk.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lkant8 authored Apr 9, 2022
1 parent bbe106d commit b5d7c62
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/deployApk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build & Publish Release APK

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: Make Gradle executable
run: chmod +x ./gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Build Debug APK
run: ./gradlew assembleDebug
- name: Releasing using Hub
uses: yurakurets/action-release-debugapk@master
env:
REPO_BRANCH: master
GITHUB_TOKEN: ${{ secrets.TOKEN }}
APK_FOLDER: android/app/build/outputs/apk/release/app-release.apk
APP_FOLDER: android/app
RELEASE_TITLE: New Build

0 comments on commit b5d7c62

Please sign in to comment.