From f64534610336675d98bb756278ca0b1c2722b003 Mon Sep 17 00:00:00 2001 From: Darren Beukes Date: Wed, 11 Jul 2018 12:02:32 +1000 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d88c094..f914ccf 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ steps: - command: yarn install plugins: seek-oss/private-npm: - token: abc123 + token: ${NPM_TOKEN} ``` You can also specify a custom npm registry if you are using your own mirror. @@ -24,7 +24,7 @@ steps: - command: yarn install plugins: seek-oss/private-npm: - token: abc123 + token: ${NPM_TOKEN} registry: //myprivatenpm.com/ ``` @@ -32,7 +32,7 @@ steps: ### `token` (required) The value of the NPM token. -> *NOTE* It's bad security to put your tokens into source control, so ideally this should be injected through the environment +> *NOTE* It's bad security practise to put your secrets into source control. A better idea is to use environment variables. ### `registry` (optional) The path to a private npm repository. Please ensure you supply the trailing `/`!