From 60dedbcd70b48b96af1af355a1c9f9b10198d123 Mon Sep 17 00:00:00 2001 From: fithwum Date: Tue, 8 Jul 2025 06:35:26 -0700 Subject: [PATCH] fdghfdghfgdh --- .gitea/workflows/base-build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/base-build.yml b/.gitea/workflows/base-build.yml index 4a664f9..7482c80 100644 --- a/.gitea/workflows/base-build.yml +++ b/.gitea/workflows/base-build.yml @@ -72,28 +72,28 @@ jobs: - name: Check output folder permissions run: | - ls -ld output - ls -l output/* + ls -ld /mnt/user/git/act_runner_output + ls -l /mnt/user/git/act_runner_output/* - name: Check output folder on host run: | echo "Host output folder contents:" - ls -R output + ls -R /mnt/user/git/act_runner_output - name: Debug output folder run: | echo "Archives present in output:" - find ./output -name '*.tar.bz2' -exec ls -lh {} \; + find ./mnt/user/git/act_runner_output -name '*.tar.bz2' -exec ls -lh {} \; - name: List output archives run: | echo "[INFO] Final archive list:" - find ./output -type f -name 'debian-*.tar.bz2' + find ./mnt/user/git/act_runner_output -type f -name 'debian-*.tar.bz2' - name: Validate that archives exist for each version run: | for version in $VERSIONS; do - path="output/$version/debian-$version.tar.bz2" + path="/mnt/user/git/act_runner_output/$version/debian-$version.tar.bz2" if [[ ! -f "$path" ]]; then echo "[ERROR] Missing archive: $path" exit 1 @@ -120,7 +120,7 @@ jobs: - name: Copy new archives to upload-repo run: | - found=$(find ./output -type f -name 'debian-*.tar.bz2') + found=$(find ./mnt/user/git/act_runner_output -type f -name 'debian-*.tar.bz2') if [ -z "$found" ]; then echo "[WARNING] No .tar.bz2 archive found in output/!" exit 1