From 412f293b530d0baeb7f4dc92b5ea786a52361c1b Mon Sep 17 00:00:00 2001 From: Phil Schneider Date: Thu, 15 Feb 2024 08:33:42 +0100 Subject: [PATCH] build: adjust get version script (#513) Reviewed-By: Evelyn Gurschler --- .github/workflows/nuget-package-push.yml | 2 +- scripts/get_current_version.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nuget-package-push.yml b/.github/workflows/nuget-package-push.yml index 29b78c3270..7d14c3c815 100644 --- a/.github/workflows/nuget-package-push.yml +++ b/.github/workflows/nuget-package-push.yml @@ -71,4 +71,4 @@ jobs: - name: Create git tag uses: rickstaa/action-create-tag@v1 with: - tag: v${{ steps.nugetPackageVersion.outputs.version }} + tag: ${{ steps.nugetPackageVersion.outputs.version }} diff --git a/scripts/get_current_version.sh b/scripts/get_current_version.sh index 7719114b99..c185a0b414 100755 --- a/scripts/get_current_version.sh +++ b/scripts/get_current_version.sh @@ -33,4 +33,4 @@ else version="$version_prefix-framework" fi -echo "Version: $version" +echo "v$version"