-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,26 @@ | ||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | ||
|
||
name: Java CI with Gradle | ||
name: Build & Publish Release APK | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
permissions: | ||
contents: read | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
build: | ||
|
||
Gradle: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
- name: Build with Gradle | ||
uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee | ||
- name: checkout code | ||
uses: actions/checkout@v2 | ||
- name: setup jdk | ||
uses: actions/setup-java@v1 | ||
with: | ||
arguments: build | ||
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 |