fdghfdghfgdh
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / push-archives-to-repo (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-docker-images (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-changelogs (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / generate-build-info (push) Has been cancelled
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Has been cancelled

This commit is contained in:
2025-07-08 06:35:26 -07:00
parent 88e46f91af
commit 60dedbcd70

View File

@@ -72,28 +72,28 @@ jobs:
- name: Check output folder permissions
run: |
ls -ld output
ls -l output/*
ls -ld /mnt/user/git/act_runner_output
ls -l /mnt/user/git/act_runner_output/*
- name: Check output folder on host
run: |
echo "Host output folder contents:"
ls -R output
ls -R /mnt/user/git/act_runner_output
- name: Debug output folder
run: |
echo "Archives present in output:"
find ./output -name '*.tar.bz2' -exec ls -lh {} \;
find ./mnt/user/git/act_runner_output -name '*.tar.bz2' -exec ls -lh {} \;
- name: List output archives
run: |
echo "[INFO] Final archive list:"
find ./output -type f -name 'debian-*.tar.bz2'
find ./mnt/user/git/act_runner_output -type f -name 'debian-*.tar.bz2'
- name: Validate that archives exist for each version
run: |
for version in $VERSIONS; do
path="output/$version/debian-$version.tar.bz2"
path="/mnt/user/git/act_runner_output/$version/debian-$version.tar.bz2"
if [[ ! -f "$path" ]]; then
echo "[ERROR] Missing archive: $path"
exit 1
@@ -120,7 +120,7 @@ jobs:
- name: Copy new archives to upload-repo
run: |
found=$(find ./output -type f -name 'debian-*.tar.bz2')
found=$(find ./mnt/user/git/act_runner_output -type f -name 'debian-*.tar.bz2')
if [ -z "$found" ]; then
echo "[WARNING] No .tar.bz2 archive found in output/!"
exit 1