Skip to content

Commit

Permalink
[CI] Fix release framework workflow to extract the version correctly (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Tankilevitch committed Mar 28, 2024
1 parent 322a735 commit b2cc01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-framework.yml
Expand Up @@ -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 != ''
Expand Down

0 comments on commit b2cc01e

Please sign in to comment.