From 0837645a35ba1bd7b4eacddc4a0ca648b37bbe8e Mon Sep 17 00:00:00 2001 From: Xiaowei Zhu <33129495+zhu-xiaowei@users.noreply.github.com> Date: Wed, 6 Mar 2024 20:07:40 +0800 Subject: [PATCH] fix: make release tag name consistent with git tag (#56) --- .github/workflows/tag_and_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tag_and_release.yml b/.github/workflows/tag_and_release.yml index 9151623..3f7eaf6 100644 --- a/.github/workflows/tag_and_release.yml +++ b/.github/workflows/tag_and_release.yml @@ -25,7 +25,7 @@ jobs: echo $version git config user.name '${{ vars.USER_NAME }}' git config user.email '${{ vars.USER_EMAIL }}' - git tag v$version + git tag $version git push origin v$version - name: Create GitHub release uses: softprops/action-gh-release@v1