ci: fix Windows node path capture

This commit is contained in:
Peter Steinberger
2026-04-20 16:29:42 +01:00
parent 0010b246c0
commit 21fbe416d4

View File

@@ -1581,6 +1581,9 @@ jobs:
- name: Capture node path
run: |
node_bin="$(dirname "$(node -p 'process.execPath')")"
if command -v cygpath >/dev/null 2>&1; then
node_bin="$(cygpath -u "$node_bin")"
fi
echo "NODE_BIN=$node_bin" >> "$GITHUB_ENV"
- name: Install dependencies