test
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-rootfs-archives (push) Failing after 13s
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-08 05:28:30 -07:00
parent 2635fe6633
commit 6480dad174

View File

@@ -36,7 +36,9 @@ jobs:
- name: Prepare output directory - name: Prepare output directory
run: mkdir -p /workspace/***/debian-base/output run: |
OUTPUT_DIR="$(pwd)/output"
mkdir -p "$OUTPUT_DIR"
echo "PWD = $(pwd)" echo "PWD = $(pwd)"
ls -ld output ls -ld output
@@ -57,7 +59,7 @@ jobs:
docker build --build-arg VERSION=$version -t fithwum/debian-$version-base . docker build --build-arg VERSION=$version -t fithwum/debian-$version-base .
docker run --rm --privileged \ docker run --rm --privileged \
-v "/workspace/***/debian-base/output":/output \ -v "$OUTPUT_DIR:/output" \
-e VERSION="$version" \ -e VERSION="$version" \
fithwum/debian-$version-base \ fithwum/debian-$version-base \
bash -c "ls -lh /output; ls -lh /; ls -lh /builder; /scripts/bootstrap-rootfs.sh \"$version\"" bash -c "ls -lh /output; ls -lh /; ls -lh /builder; /scripts/bootstrap-rootfs.sh \"$version\""