From f22fde2c95e8fd5d82d31dfb41da7ff1356afd3c Mon Sep 17 00:00:00 2001 From: spinline Date: Fri, 30 Jan 2026 01:06:14 +0300 Subject: [PATCH] fix: Correct artifact path (workspace root target) --- .github/workflows/build-mips.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-mips.yml b/.github/workflows/build-mips.yml index 3a7f736..b0d19c7 100644 --- a/.github/workflows/build-mips.yml +++ b/.github/workflows/build-mips.yml @@ -46,11 +46,11 @@ jobs: - name: Debug - List Files run: | echo "Listing target directory..." - find backend/target -maxdepth 5 || true - ls -R backend/target/mips-unknown-linux-musl/release || true + find target -maxdepth 5 || true + ls -R target/mips-unknown-linux-musl/release || true - name: Upload Binary uses: actions/upload-artifact@v4 with: name: vibetorrent-mips - path: backend/target/mips-unknown-linux-musl/release/backend + path: target/mips-unknown-linux-musl/release/backend