From fd93ebabdd94a244c3e0d88bb8a6c0192a92f7d2 Mon Sep 17 00:00:00 2001 From: Yogesh Choudhary Paliyal Date: Tue, 8 Nov 2022 16:13:46 +0530 Subject: [PATCH] Update master-apk-create.yml --- .github/workflows/master-apk-create.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/master-apk-create.yml b/.github/workflows/master-apk-create.yml index ec7b923c..5d160c77 100644 --- a/.github/workflows/master-apk-create.yml +++ b/.github/workflows/master-apk-create.yml @@ -23,13 +23,13 @@ jobs: run: chmod +x gradlew - name: Build APK ⚙️🛠 - run: bash ./gradlew assembleProductionDebug + run: bash ./gradlew assembleStagingDebug - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ github.token }}" - automatic_release_tag: "latest" + automatic_release_tag: "latest-master" prerelease: true - title: "Development Build" - files: app/build/outputs/apk/production/debug/*.apk + title: "Staging Build" + files: app/build/outputs/apk/staging/debug/*.apk