Skip to content

Commit

Permalink
Update build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
metantesan authored Sep 30, 2023
1 parent b3d203d commit d4d6a76
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,10 @@ jobs:
- name: Build image
run: mkarchiso -v iso/
- name: Upload iso to the release
run: cd ./out & local iso_name=$(ls *.iso) & mkdir iso_parts & split -d -b 1000M "$iso_name" iso_parts/"$iso_name"_part & gh release upload ${{ github.event.release.tag_name }} ./iso_parts/* —clobber -R ${{ github.repository }}
run: |
cd ./out
local iso_name=$(ls *.iso)
mkdir iso_parts
split -d -b 1000M "$iso_name" iso_parts/"$iso_name"_part
gh release upload ${{ github.event.release.tag_name }} ./iso_parts/* —clobber -R ${{ github.repository }}

0 comments on commit d4d6a76

Please sign in to comment.