Change file to upload

This commit is contained in:
hikari 2023-10-11 17:47:50 +03:30 committed by GitHub
parent 51c2974293
commit fcb7b403f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 }}