diff --git a/.gitea/workflows/base-build.yml b/.gitea/workflows/base-build.yml index 9ea23be..38e72ba 100644 --- a/.gitea/workflows/base-build.yml +++ b/.gitea/workflows/base-build.yml @@ -26,8 +26,17 @@ jobs: - name: Checkout source uses: actions/checkout@v3 + - name: Debug container /output contents + run: | + docker run --rm --privileged \ + -v "$(pwd)/output":/output \ + -e VERSION=bullseye \ + fithwum/debian-bullseye-base \ + bash -c "ls -lah /output" + + - name: Prepare output directory - run: mkdir -p output + run: mkdir -p /workspace/***/debian-base/output echo "PWD = $(pwd)" ls -ld output @@ -48,7 +57,7 @@ jobs: docker build --build-arg VERSION=$version -t fithwum/debian-$version-base . docker run --rm --privileged \ - -v "${pwd}/output":/output \ + -v "/workspace/***/debian-base/output":/output \ -e VERSION="$version" \ fithwum/debian-$version-base \ bash -c "ls -lh /output; ls -lh /; ls -lh /builder; /scripts/bootstrap-rootfs.sh \"$version\""