From 1bff99573b2ab0a1c5b753de8501fe017da14bef Mon Sep 17 00:00:00 2001 From: HIMANSHU Date: Thu, 18 Apr 2024 15:13:44 +0530 Subject: [PATCH] tag name fix --- .github/workflows/android-build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml index 4ead161..e6205e4 100644 --- a/.github/workflows/android-build.yml +++ b/.github/workflows/android-build.yml @@ -51,13 +51,16 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 + - name: Set tag name + id: set_tag_name + run: echo "::set-output name=tag_name::${{ github.ref }}" - 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: ${{ github.ref }} + tag_name: ${{ steps.set_tag_name.outputs.tag_name }} release_name: Release ${{ github.ref }} draft: false prerelease: false