From 2dfceb84bb03412c26cea53b5ccfb3c5a478f40e Mon Sep 17 00:00:00 2001 From: rUv Date: Fri, 21 Nov 2025 20:03:30 +0000 Subject: [PATCH] debug: Find where NAPI-RS outputs .node files --- .github/workflows/build-native.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build-native.yml b/.github/workflows/build-native.yml index 8a60223b..166bc578 100644 --- a/.github/workflows/build-native.yml +++ b/.github/workflows/build-native.yml @@ -77,6 +77,14 @@ jobs: env: CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc + - name: Find built .node files (debug) + run: | + echo "=== Searching entire workspace for .node files ===" + find . -name "*.node" -type f 2>/dev/null || true + echo "=== Checking npm/packages/core ===" + ls -la npm/packages/core/*.node 2>/dev/null || echo "No .node in npm/packages/core/" + ls -R npm/packages/core | grep "\.node" || echo "No .node files found" + - name: Copy binary to platform package shell: bash run: |