We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f1f84b9 + f116d97 commit b469c25Copy full SHA for b469c25
1 file changed
.github/workflows/release.yml
@@ -264,8 +264,13 @@ jobs:
264
exit 1
265
fi
266
267
+ tmp_dir="$(mktemp -d)"
268
+ trap 'rm -rf "$tmp_dir"' EXIT
269
+
270
+ pushd "$tmp_dir" >/dev/null
271
npm config set //registry.npmjs.org/:_authToken "${NODE_AUTH_TOKEN}"
272
npm whoami --registry "${NPM_REGISTRY_URL}"
273
+ popd >/dev/null
274
275
- name: Download raw CLI binaries
276
uses: actions/download-artifact@v8
@@ -335,8 +340,13 @@ jobs:
335
340
336
341
337
342
343
344
345
346
338
347
339
348
349
350
351
- name: Download raw MCP binaries
352
0 commit comments