From c68f7f1fd6efbf501259181e0109a7f85ea84577 Mon Sep 17 00:00:00 2001 From: fithwum Date: Tue, 8 Jul 2025 07:59:51 -0700 Subject: [PATCH] fgdhfdghfdgh --- .gitea/workflows/base-build.yml | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/.gitea/workflows/base-build.yml b/.gitea/workflows/base-build.yml index e8ec492..8489618 100644 --- a/.gitea/workflows/base-build.yml +++ b/.gitea/workflows/base-build.yml @@ -55,25 +55,11 @@ jobs: bash -c "ls -lh /output; ls -lh /; ls -lh /builder; /scripts/bootstrap-rootfs.sh \"$version\"" # bash -eux /scripts/bootstrap-rootfs.sh "$version" done - - - name: Ensure Unraid FS is synced - run: | - sleep 2 - sync - ls -lh "${{ env.OUTPUT_DIR }}" - - - name: Print permissions of output dir - run: | - find "${{ env.OUTPUT_DIR }}" -type f -exec ls -lh {} \; - - - name: TEMP - List everything recursively - run: | - echo "[DEBUG] Full tree of ${{ env.OUTPUT_DIR }}" - find "${{ env.OUTPUT_DIR }}" -type f -ls - name: Validate that archives exist for each version run: | - for version in $VERSIONS; do + IFS=' ' read -r -a versions <<< "$VERSIONS" + for version in "${versions[@]}"; do path="${{ env.OUTPUT_DIR }}/$version/debian-$version.tar.bz2" if [[ ! -f "$path" ]]; then echo "[ERROR] Missing archive: $path"