You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
access_json=$(npm access list packages @truenine --json 2>/dev/null || true)
262
+
popd >/dev/null
263
+
264
+
echo "Authenticated to npm as ${npm_user}"
263
265
if [[ -z "${access_json}" || "${access_json}" == "{}" || "${access_json}" == "null" ]]; then
264
266
echo "::error::Authenticated as ${npm_user}, but npm did not report package access for @truenine. Replace NPM_TOKEN with a token that has publish permission for existing @truenine/* packages."
265
267
exit 1
@@ -429,12 +431,15 @@ jobs:
429
431
exit 1
430
432
fi
431
433
434
+
pushd cli >/dev/null
432
435
npm config set //registry.npmjs.org/:_authToken "${NODE_AUTH_TOKEN}"
0 commit comments