From b2cc01ec9aef7d02baef615994c8a1074670ef1b Mon Sep 17 00:00:00 2001 From: Tom Tankilevitch <59158507+Tankilevitch@users.noreply.github.com> Date: Thu, 28 Mar 2024 12:40:30 +0200 Subject: [PATCH] [CI] Fix release framework workflow to extract the version correctly (#468) --- .github/workflows/release-framework.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-framework.yml b/.github/workflows/release-framework.yml index 34c24b212..1837aff7a 100644 --- a/.github/workflows/release-framework.yml +++ b/.github/workflows/release-framework.yml @@ -32,7 +32,7 @@ jobs: - name: Remove 'v' from version name continue-on-error: true - run: echo "VERSION=${{ github.ref_name:1 }}" >> $GITHUB_ENV + run: echo "VERSION=$(echo ${{ github.ref_name }} | sed 's/^v//g')" >> $GITHUB_ENV - name: Send internal release notification if: env.VERSION != ''