From b050f5217f0174d423c0c0a107ed2b6cf91691d4 Mon Sep 17 00:00:00 2001 From: haritabh-z01 Date: Tue, 12 Aug 2025 10:47:18 +0530 Subject: [PATCH] fix: node arch in release wf --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42bcd8b..7a231b1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,6 +57,14 @@ jobs: with: node-version: '24' cache: 'pnpm' + architecture: ${{ matrix.arch }} + + - name: Log Node.js architecture and platform + run: | + echo "=== Node.js Process Information ===" + node -e "console.log('process.arch:', process.arch)" + node -e "console.log('process.platform:', process.platform)" + echo "" - name: Install dependencies run: pnpm install --frozen-lockfile