From 97bd4df51906d502ea0315325e1e40a54591bd3c Mon Sep 17 00:00:00 2001 From: ZeWaka Date: Wed, 7 Aug 2024 23:34:03 -0700 Subject: [PATCH] try --- .github/workflows/release.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 92f2681e..f7fb8475 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,14 +60,10 @@ jobs: id: get_sha run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT - - name: Bump version and push tag - id: tag_version - uses: mathieudutour/github-tag-action@v6.2 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - commit_sha: ${{ steps.get_sha.outputs.sha }} - custom_tag: ${{ github.event.release.tag_name}} - tag_prefix: '' + - name: Update tag to latest commit + run: | + git tag -f ${{ github.event.release.tag_name }} ${{ steps.get_sha.outputs.sha }} + git push origin ${{ github.event.release.tag_name }} --force - name: Build Changelog id: build_changelog