We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f34c6d commit 823c0e8Copy full SHA for 823c0e8
.github/workflows/build.yml
@@ -72,9 +72,7 @@ jobs:
72
else
73
branch_name='${{ github.ref_name }}'
74
echo "${branch_name}"
75
- echo "${branch_name//[/]/_}"
76
- echo "${branch_name}" | tr '/' '_' | tr '-' '_'
77
- echo "${branch_name}" | cut -d'_' -f1
+ echo "${branch_name}" | tr '/' | tr '/${{ steps.versioning.outputs.version }}' '' | tr '-' '_'
78
echo "pre-release-tag=${branch_name//[/]/_}" >> GITHUB_OUTPUT
79
fi
80
- name: 'Format version'
0 commit comments