Commit d705570 1 parent 2515620 commit d705570 Copy full SHA for d705570
File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 31
31
- name : Extract commit data
32
32
uses :
rlespinasse/[email protected]
33
33
- name : Get tag
34
+ id : tag
34
35
shell : bash
35
36
run : |
36
37
git config --global user.name "Madman10K"
41
42
tag="${tag:1}"
42
43
numeric_tag="${tag//.}"
43
44
numeric_tag="$(echo ${numeric_tag} | sed 's/^0*//')"
45
+
46
+ echo "out=untitled-imgui-framework-${tag}.tar.xz" >> $GITHUB_OUTPUT
44
47
45
48
sed -i "s/set(UIMGUI_FRAMEWORK_VERSION .*/set(UIMGUI_FRAMEWORK_VERSION ${tag})/g" Framework/cmake/Version.cmake
46
49
sed -i "s/set(UIMGUI_FRAMEWORK_VERSION_NUMERIC .*)/set(UIMGUI_FRAMEWORK_VERSION_NUMERIC ${numeric_tag})/g" Framework/cmake/Version.cmake
49
52
shell : bash
50
53
run : |
51
54
rm -rf .git/
52
- tar cfJ untitled-imgui-framework.tar.xz . || echo "Might have failed"
55
+ tar cfJ ${{ steps.tag.outputs.tag }} . || echo "Might have failed"
53
56
- name : Create Release
54
57
uses : softprops/action-gh-release@v2
55
58
with :
58
61
More on what is done this month can be found on the latest newsletter entry: https://madladsquad.com/#monthly-newsletter
59
62
draft : false
60
63
prerelease : false
61
- files : untitled-imgui-framework.tar.xz
64
+ files : ${{ steps.tag.outputs.tag }}
62
65
generate_release_notes : false
You can’t perform that action at this time.
0 commit comments