diff --git a/.gitea/workflows/base-build.yml b/.gitea/workflows/base-build.yml index d70964c..e3b4e14 100644 --- a/.gitea/workflows/base-build.yml +++ b/.gitea/workflows/base-build.yml @@ -37,11 +37,13 @@ jobs: - name: Prepare output directory run: | - OUTPUT_DIR="/home/runner/_work/${GITEA_REPOSITORY##*/}/output" + OUTPUT_DIR="/mnt/host-output/${GITEA_REPOSITORY##*/}/output" mkdir -p "$OUTPUT_DIR" - - echo "PWD = $(pwd)" - ls -ld output + + - name: Check host output + run: | + ls -lah /mnt/host-output + ls -lah /mnt/host-output/${GITEA_REPOSITORY##*/}/output - name: Clean workspace tarballs before build run: | @@ -53,7 +55,7 @@ jobs: - name: Build all Debian rootfs versions sequentially run: | versions=($VERSIONS) - OUTPUT_DIR="/home/runner/_work/${GITEA_REPOSITORY##*/}/output" + OUTPUT_DIR="/mnt/host-output/${GITEA_REPOSITORY##*/}/output" for version in "${versions[@]}"; do echo "[INFO] Building $version..."