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
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:
@@ -72,28 +72,28 @@ jobs:
|
|||||||
|
|
||||||
- name: Check output folder permissions
|
- name: Check output folder permissions
|
||||||
run: |
|
run: |
|
||||||
ls -ld output
|
ls -ld /mnt/user/git/act_runner_output
|
||||||
ls -l output/*
|
ls -l /mnt/user/git/act_runner_output/*
|
||||||
|
|
||||||
- name: Check output folder on host
|
- name: Check output folder on host
|
||||||
run: |
|
run: |
|
||||||
echo "Host output folder contents:"
|
echo "Host output folder contents:"
|
||||||
ls -R output
|
ls -R /mnt/user/git/act_runner_output
|
||||||
|
|
||||||
- name: Debug output folder
|
- name: Debug output folder
|
||||||
run: |
|
run: |
|
||||||
echo "Archives present in output:"
|
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
|
- name: List output archives
|
||||||
run: |
|
run: |
|
||||||
echo "[INFO] Final archive list:"
|
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
|
- name: Validate that archives exist for each version
|
||||||
run: |
|
run: |
|
||||||
for version in $VERSIONS; do
|
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
|
if [[ ! -f "$path" ]]; then
|
||||||
echo "[ERROR] Missing archive: $path"
|
echo "[ERROR] Missing archive: $path"
|
||||||
exit 1
|
exit 1
|
||||||
@@ -120,7 +120,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Copy new archives to upload-repo
|
- name: Copy new archives to upload-repo
|
||||||
run: |
|
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
|
if [ -z "$found" ]; then
|
||||||
echo "[WARNING] No .tar.bz2 archive found in output/!"
|
echo "[WARNING] No .tar.bz2 archive found in output/!"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
Reference in New Issue
Block a user