Skip to content

Commit

Permalink
Update npm auth
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrohan authored May 11, 2023
1 parent 9fee3e4 commit 16b1cd2
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/actions/build_node/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,7 @@

set -e

if [ -n "$NPM_AUTH_TOKEN_SHARED" ]; then
# Respect NPM_CONFIG_USERCONFIG if it is provided, default to $HOME/.npmrc
NPM_CONFIG_USERCONFIG="${NPM_CONFIG_USERCONFIG-"$HOME/.npmrc"}"
NPM_REGISTRY_URL="${NPM_REGISTRY_URL-https://registry.npmjs.org}"

# Allow registry.npmjs.org to be overridden with an environment variable
printf "//%s/:_authToken=%s\\nregistry=%s" "$NPM_REGISTRY_URL" "$NPM_AUTH_TOKEN_SHARED" "$NPM_REGISTRY_URL" > "$NPM_CONFIG_USERCONFIG"
chmod 0600 "$NPM_CONFIG_USERCONFIG"
fi
printf "//registry.npmjs.org/:_authToken=%s" "$NPM_AUTH_TOKEN_SHARED" > "$HOME/.npmrc"

PACKAGE_VERSION=$(jq '.version' --raw-output ./package.json)

Expand Down

0 comments on commit 16b1cd2

Please sign in to comment.