fghfdghfg
Some checks failed
Build, Upload RootFS, and Push Docker Images, update changelog, update build info. / build-and-push-rootfs-archives (push) Failing after 4s
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 20:59:10 -07:00
parent e05b078b47
commit dac38b5d01

View File

@@ -18,7 +18,8 @@ env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
VERSIONS: "buster" VERSIONS: "buster"
OUTPUT_DIR: /mnt/unraid_output/act_runner_output # OUTPUT_DIR: /mnt/unraid_output/act_runner_output
OUTPUT_DIR: ./output
jobs: jobs:
build-and-push-rootfs-archives: build-and-push-rootfs-archives:
@@ -32,7 +33,7 @@ jobs:
- name: Write to output via docker - name: Write to output via docker
run: | run: |
docker run --rm \ docker run --rm \
-v "${{ env.OUTPUT_DIR }}:/output" \ -v "$(pwd)/output:/output" \
debian \ debian \
bash -c "echo test > /output/hello.txt" bash -c "echo test > /output/hello.txt"
@@ -44,7 +45,7 @@ jobs:
- name: Debug mount inside container - name: Debug mount inside container
run: | run: |
docker run --rm --privileged \ docker run --rm --privileged \
-v "${{ env.OUTPUT_DIR }}:/output" \ -v "$(pwd)/output:/output" \
fithwum/debian-buster-base \ fithwum/debian-buster-base \
bash -c "ls -lah /output; touch /output/test_debug && ls -lah /output" bash -c "ls -lah /output; touch /output/test_debug && ls -lah /output"
@@ -65,7 +66,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 "${{ env.OUTPUT_DIR }}:/output" \ -v "$(pwd)/output:/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\""