From d5aa07a7856b0deb8a840fe0dee4b6ce75cda670 Mon Sep 17 00:00:00 2001 From: Itz Invincible <104241667+StrawHatts@users.noreply.github.com> Date: Thu, 1 Aug 2024 14:14:24 +0530 Subject: [PATCH] Update gradle.yml --- .github/workflows/gradle.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index ef8ec305..6a4ad2eb 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -39,6 +39,16 @@ jobs: - name: Build Application run: ./gradlew build + - name: Add Jar to GitHub releases + uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + automatic_release_tag: "latest" + prerelease: false + title: "Automatic Release" + files: | + app/build/outputs/apk/release/*.apk + # NOTE: The Gradle Wrapper is the default and recommended way to run Gradle (https://docs.gradle.org/current/userguide/gradle_wrapper.html). # If your project does not have the Gradle Wrapper configured, you can use the following configuration to run Gradle with a specified version. #