fgdhdfgh
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Failing after 1m31s
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 17:20:15 -07:00
parent c0a36c4afb
commit b479063707

View File

@@ -42,6 +42,19 @@ jobs:
bash base-image-script/debian-${version}_pt1.sh
echo "[DEBUG] Checking host output dir: ./$version"
ls -lh "./$version" || echo "[WARN] No folder or files in ./$version"
expected_path="./$version/debian-$version.tar.bz2"
fallback_path="./debian-$version.tar.bz2"
if [ -f "$fallback_path" ]; then
echo "[INFO] Found fallback tarball: $fallback_path"
mkdir -p "./$version"
mv "$fallback_path" "$expected_path"
echo "[INFO] Moved $fallback_path to $expected_path"
else
echo "[ERROR] Expected tarball not found at $fallback_path"
exit 1
fi
done
- name: List output archives