Compress iso

This commit is contained in:
Aditya Garg 2023-03-06 18:54:46 +05:30 committed by GitHub
parent 96aeb15e8d
commit 9973e4e4e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -74,11 +74,21 @@ jobs:
echo unzip cd.zip
EOF
- name: Compress ISO
run: |
cd ${{ github.workspace }}
mkdir ISO
mv ${{ github.workspace }}/*.iso ${{ github.workspace }}/ISO
cd ISO
ISONAME=$(ls ${{ github.workspace }}/ISO | grep .iso | rev | cut -c 5- | rev)
tar -czvf ${ISONAME}.tar.gz ${{ github.workspace }}/ISO/${ISONAME}.iso
ls -l
- name: Release
if: github.ref == 'refs/heads/kinetic'
uses: softprops/action-gh-release@v1
with:
files: ${{ github.workspace }}/*.iso
files: ${{ github.workspace }}/ISO/*.tar.gz
tag_name: v${{ env.isotag }}
body_path: ${{ github.workspace }}/.github/workflows/instructions.txt
draft: false