From e65ce107bc38a1a0853926bb8a4ba96a6f99965d Mon Sep 17 00:00:00 2001 From: Jan Willhaus Date: Sun, 21 Jan 2024 14:37:36 +0100 Subject: [PATCH] build: Add 'v' prefix to gh release names --- .github/workflows/bump-version.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bump-version.yaml b/.github/workflows/bump-version.yaml index 77ced91..8fc91ac 100644 --- a/.github/workflows/bump-version.yaml +++ b/.github/workflows/bump-version.yaml @@ -34,6 +34,7 @@ jobs: uses: softprops/action-gh-release@v1 with: body_path: "body.md" - tag_name: ${{ env.REVISION }} + tag_name: v${{ env.REVISION }} + skipIfReleaseExists: true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}