Skip to content

Commit f9cdc28

Browse files
authored
Update release.yaml
1 parent 64d42a8 commit f9cdc28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
numeric_tag="${tag//.}"
4444
numeric_tag="$(echo ${numeric_tag} | sed 's/^0*//')"
4545
46-
echo "out=untitled-imgui-framework-${tag}.tar.xz" >> $GITHUB_OUTPUT
46+
echo "out=untitled-imgui-framework-${tag}" >> $GITHUB_OUTPUT
4747
4848
sed -i "s/set(UIMGUI_FRAMEWORK_VERSION .*/set(UIMGUI_FRAMEWORK_VERSION ${tag})/g" Framework/cmake/Version.cmake
4949
sed -i "s/set(UIMGUI_FRAMEWORK_VERSION_NUMERIC .*)/set(UIMGUI_FRAMEWORK_VERSION_NUMERIC ${numeric_tag})/g" Framework/cmake/Version.cmake
@@ -52,7 +52,7 @@ jobs:
5252
shell: bash
5353
run: |
5454
rm -rf .git/
55-
tar cfJ ${{ steps.tag.outputs.tag }} . --transform "s,^,${{ steps.tag.outputs.tag }}/," * || echo "Might have failed"
55+
tar cfJ ${{ steps.tag.outputs.tag }}.tar.xz . --transform "s,^,${{ steps.tag.outputs.tag }}/," * || echo "Might have failed"
5656
- name: Create Release
5757
uses: softprops/action-gh-release@v2
5858
with:
@@ -61,5 +61,5 @@ jobs:
6161
More on what is done this month can be found on the latest newsletter entry: https://madladsquad.com/#monthly-newsletter
6262
draft: false
6363
prerelease: false
64-
files: ${{ steps.tag.outputs.tag }}
64+
files: ${{ steps.tag.outputs.tag }}.tar.xz
6565
generate_release_notes: false

0 commit comments

Comments
 (0)