ytgfutyfu
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Failing after 1m19s
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 18:47:31 -07:00
parent 5dc84fb646
commit fb42ffed55

View File

@@ -78,17 +78,18 @@ jobs:
umount -lf \"\$ROOTFS_DIR/\$dir\" 2>/dev/null || true umount -lf \"\$ROOTFS_DIR/\$dir\" 2>/dev/null || true
done done
echo '[INFO] Creating compressed base image...' mkdir -p /output/$DEBIAN_RELEASE
TARBALL=\"/output/debian-\$DEBIAN_RELEASE.tar.bz2\" TARBALL="/output/$DEBIAN_RELEASE/debian-${DEBIAN_RELEASE}.tar.bz2"
tar -cjf \"\$TARBALL\" -C \"\$ROOTFS_DIR\" . tar -cjf "$TARBALL" -C "$ROOTFS_DIR" .
echo '[INFO] Tarball ready for CI to upload: \$TARBALL' echo '[INFO] Tarball ready for CI to upload: \$TARBALL'
" "
done done
- name: List output archives - name: List output archives
run: | run: |
echo "[INFO] Looking for tarballs in workspace..." echo "[INFO] Final archive list:"
find . -name '*.tar.bz2' -exec ls -lh {} \; find . -type f -path './*/debian-*.tar.bz2' -exec ls -lh {} \;
# - name: Debug workspace contents # - name: Debug workspace contents
# run: | # run: |
@@ -115,7 +116,7 @@ jobs:
- name: Copy new archives to upload-repo - name: Copy new archives to upload-repo
run: | run: |
found=$(find . -name '*.tar.bz2') found=$(find . -type f -path './*/debian-*.tar.bz2')
if [ -z "$found" ]; then if [ -z "$found" ]; then
echo "[WARNING] No .tar.bz2 archive found!" echo "[WARNING] No .tar.bz2 archive found!"
exit 1 exit 1