hhrwrthsrth
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Failing after 4m3s
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / push-archives-to-repo (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Has been skipped
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Has been skipped

This commit is contained in:
2025-07-07 21:17:40 -07:00
parent 6276e49498
commit 4862be1f17
2 changed files with 12 additions and 2 deletions

View File

@@ -45,13 +45,23 @@ jobs:
docker build --build-arg VERSION=$version -t fithwum/debian-$version-base .
docker run --rm --privileged \
-v "$(pwd)/output":/output \
-v "${pwd}/output":/output \
-e VERSION="$version" \
fithwum/debian-$version-base \
bash -eux /scripts/bootstrap-rootfs.sh "$version"
# /scripts/bootstrap-rootfs.sh
done
- name: Check output folder permissions
run: |
ls -ld output
ls -l output/*
- name: Check output folder on host
run: |
echo "Host output folder contents:"
ls -R output
- name: Debug output folder
run: |
echo "Archives present in output:"

View File

@@ -46,7 +46,7 @@ mkdir -p "$OUTPUT_DIR/$DEBIAN_RELEASE"
tar -cjf "$TARBALL" -C "$ROOTFS_DIR" .
ls -lh "$TARBALL"
echo "[INFO] Image archive size:"
du -sh "$TARBALL"
echo "[INFO] Tarball ready: $TARBALL"