From e6e304dfc75da95f704498322265ce2191dbdf04 Mon Sep 17 00:00:00 2001 From: Max P Date: Thu, 22 Aug 2024 23:08:07 +0200 Subject: [PATCH] ci: changed version format to prefix the version wth `v` --- .github/workflows/CreateRelease.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CreateRelease.yml b/.github/workflows/CreateRelease.yml index 9e62a72..82bc194 100644 --- a/.github/workflows/CreateRelease.yml +++ b/.github/workflows/CreateRelease.yml @@ -35,7 +35,7 @@ jobs: id: get_version run: | VERSION=$(npm run version:show | tail -n 1) - echo "VERSION=$VERSION" >> $GITHUB_ENV + echo "VERSION=v$VERSION" >> $GITHUB_ENV shell: bash - name: Get previous release tag @@ -116,7 +116,7 @@ jobs: uses: softprops/action-gh-release@v2 with: tag_name: ${{ env.VERSION }} - name: Release ${{ env.VERSION }} + name: Release v${{ env.VERSION }} body_path: release_notes.md prerelease: true env: