From 88eda361251c8b382302ca70b09cade8b28aee9d Mon Sep 17 00:00:00 2001 From: YiFang Xiao Date: Thu, 1 Jun 2023 11:14:22 +0800 Subject: [PATCH] action: when packaging release version ,add an extra tag following the pattern as v23.06.01 --- .github/workflows/AutoTag.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/AutoTag.yml b/.github/workflows/AutoTag.yml index 31a42d79..44d611bb 100644 --- a/.github/workflows/AutoTag.yml +++ b/.github/workflows/AutoTag.yml @@ -42,4 +42,9 @@ jobs: custom_tag: ${{env.version}}-${{env.version-suffix}}.${{ steps.vars.outputs.release_hm }}.${{ steps.vars.outputs.sha_short }} - + - name: Bump version and push tag + if: ${{env.prerelease != true}} + uses: mathieudutour/github-tag-action@v6.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + custom_tag: ${{env.version}}