Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,13 @@ jobs:
exit 1
fi

tmp_dir="$(mktemp -d)"
trap 'rm -rf "$tmp_dir"' EXIT

pushd "$tmp_dir" >/dev/null
npm config set //registry.npmjs.org/:_authToken "${NODE_AUTH_TOKEN}"
npm whoami --registry "${NPM_REGISTRY_URL}"
popd >/dev/null

- name: Download raw CLI binaries
uses: actions/download-artifact@v8
Expand Down Expand Up @@ -335,8 +340,13 @@ jobs:
exit 1
fi

tmp_dir="$(mktemp -d)"
trap 'rm -rf "$tmp_dir"' EXIT

pushd "$tmp_dir" >/dev/null
npm config set //registry.npmjs.org/:_authToken "${NODE_AUTH_TOKEN}"
npm whoami --registry "${NPM_REGISTRY_URL}"
popd >/dev/null

- name: Download raw MCP binaries
uses: actions/download-artifact@v8
Expand Down
Loading