fdgjhdfj
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. / build-rootfs-archives (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

This commit is contained in:
2025-07-08 07:05:15 -07:00
parent 7a4d964d9e
commit 3ab896dc9f

View File

@@ -30,7 +30,7 @@ jobs:
- name: Check host output - name: Check host output
run: | run: |
mkdir -p "${{ env.OUTPUT_DIR }}" mkdir -p "${{ env.OUTPUT_DIR }}"
ls -lah /mnt/user/git/act_runner_output ls -lah "${{ env.OUTPUT_DIR }}"
- name: Clean workspace tarballs before build - name: Clean workspace tarballs before build
run: | run: |
@@ -58,7 +58,13 @@ jobs:
- name: Verify tarball exists on host - name: Verify tarball exists on host
run: | run: |
find "${{ env.OUTPUT_DIR }}" -type f -name '*.tar.bz2' -ls if [ -d "${{ env.OUTPUT_DIR }}" ]; then
echo "[INFO] Contents of output directory:"
ls -lR "${{ env.OUTPUT_DIR }}"
else
echo "[ERROR] Output directory does not exist."
exit 1
fi
- name: Check output folder permissions - name: Check output folder permissions
run: | run: |