From 7f122aa285f46c1b9397922fad85ef326b6943d2 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sat, 8 Jun 2024 23:14:00 +0200 Subject: [PATCH] release.yml: Stop tagging releases as "vv" with double "v" Default config "tag_prefix: v" already adds prefix "v" for us. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4e0d704a..00fb1ca0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: - name: Create Tag uses: mathieudutour/github-tag-action@v6.1 with: - custom_tag: "v${{steps.get_current_version.outputs.project_version}}" + custom_tag: "${{steps.get_current_version.outputs.project_version}}" github_token: ${{ secrets.GH_API_SECRET }} - name: Build Changelog