From fcb7b403f2ea5b281bac498177c2779adc664ee7 Mon Sep 17 00:00:00 2001 From: hikari <94219809+metantesan@users.noreply.github.com> Date: Wed, 11 Oct 2023 17:47:50 +0330 Subject: [PATCH] Change file to upload --- .github/workflows/build.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2423a17..a8e0535 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -29,9 +29,6 @@ jobs: - name: Upload iso to the release run: | cd ./out - mkdir iso_parts - # split -d -b 2000M "$(ls *.iso)" iso_parts/"$(ls *.iso)"_part - #zip -s 2000m iso_parts/"$(ls *.iso)".zip "$(ls *.iso)" - 7z -v1000m a iso_parts/"$(ls *.iso)".zip "$(ls *.iso)" - md5sum iso_parts/* > iso_parts/md5sums.txt - gh release upload ${{ github.event.release.tag_name }} ./iso_parts/* -R ${{ github.repository }} + 7z -v1000m a "$(ls *.iso)".zip "$(ls *.iso)" + md5sum * > md5sums.txt + gh release upload ${{ github.event.release.tag_name }} ./* -R ${{ github.repository }}