From 3f0a2db28df9da7c1bc226991db457663a850203 Mon Sep 17 00:00:00 2001 From: Yogesh Choudhary Paliyal Date: Wed, 10 May 2023 09:49:35 +0530 Subject: [PATCH] merge apk script changes --- .github/workflows/master-apk-create.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/master-apk-create.yml b/.github/workflows/master-apk-create.yml index 4774b103..46971971 100644 --- a/.github/workflows/master-apk-create.yml +++ b/.github/workflows/master-apk-create.yml @@ -43,7 +43,15 @@ jobs: git config --global user.email 'yogeshpaliyal@users.noreply.github.com' git add . git commit -am "Github Actions: App version Bumped to ${{ steps.bump-app-version.outputs.newVersion }}" - + + + - name: Git push tag + run: | + git tag -a latest-master -m "Release version ${{ steps.bump-app-version.outputs.newVersion }}" -f + git push origin latest-master -f + + + - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ github.token }}"