We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8a69ec commit 70db413Copy full SHA for 70db413
.github/workflows/release.yaml
@@ -40,7 +40,7 @@ jobs:
40
tag="${{ github.ref_name }}"
41
tag="${tag:1}"
42
numeric_tag="${tag//.}"
43
- numeric_tag="$(echo \"${numeric_tag}\" | sed \"s/^0*//)"
+ numeric_tag="$(echo ${numeric_tag} | sed 's/^0*//')"
44
45
sed -i "s/set(UIMGUI_FRAMEWORK_VERSION .*/set(UIMGUI_FRAMEWORK_VERSION ${tag})/g" Framework/cmake/Version.cmake
46
sed -i "s/set(UIMGUI_FRAMEWORK_VERSION_NUMERIC .*)/set(UIMGUI_FRAMEWORK_VERSION_NUMERIC ${numeric_tag})/g" Framework/cmake/Version.cmake
0 commit comments