fix: Correct artifact path (workspace root target)

This commit is contained in:
spinline
2026-01-30 01:06:14 +03:00
parent 2dcd61d1e9
commit f22fde2c95

View File

@@ -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