From b5030d0868eece1f695924b449cb532652b51598 Mon Sep 17 00:00:00 2001 From: HIMANSHU Date: Thu, 18 Apr 2024 16:02:32 +0530 Subject: [PATCH] fix:tag issue fix --- .github/workflows/android-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml index bb50c96..4c7ae65 100644 --- a/.github/workflows/android-build.yml +++ b/.github/workflows/android-build.yml @@ -53,16 +53,16 @@ jobs: uses: actions/checkout@v2 - name: Set tag name id: set_tag_name - uses: thenativeweb/get-next-version@main + uses: dawidd6/action-get-tag@v1 with: - prefix: 'v' + strip_v: false - name: Create Release id: create_release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token with: - tag_name: ${{ steps.set_tag_name.outputs.version }} + tag_name: ${{ steps.set_tag_name.outputs.tag }} release_name: Release ${{ github.ref }} draft: false prerelease: false