This commit is contained in:
Tanguy Herbron 2024-08-04 23:18:25 +02:00
parent eff8add72a
commit 9acd7c83ec
2 changed files with 11 additions and 6 deletions

View File

@ -42,8 +42,11 @@ jobs:
run: | run: |
apt update apt update
apt install -y curl xz-utils file sudo apt install -y curl xz-utils file sudo
./build/arm64.sh #./build/arm64.sh
- name: Upload ISO image touch halis-debian-11.6.0-amd64.img.xz
uses: actions/upload-artifact@v4 - name: Upload ISO image to generic package registry
with: run: |
path: ./*.img.xz curl --header 'Authorization: Bearer ${{ secrets.GITEA_TOKEN }}' \
--upload-file halis-debian-11.6.0-amd64.img.xz \
-w "%{http_code}" \
https://git.halis.io/api/packages/athens-school/generic/halis-iso-arm64/0.0.1/halis-debian-11.6.0-amd64.img.xz

View File

@ -37,7 +37,9 @@ EOT
echo "Unmounting second partition" echo "Unmounting second partition"
sudo umount mnt -R sudo umount mnt -R
CORE_COUNT=$((`nproc`-1))
echo "Compressing resulting image" echo "Compressing resulting image"
xz $RASPIOS_IMG xz -T$CORE_COUNT $RASPIOS_IMG
cp $RASPIOS_IMG.xz halis-debian-11.6.0-amd64.img.xz cp $RASPIOS_IMG.xz halis-debian-11.6.0-amd64.img.xz