From 5647fffba3e10e242358415ab4073109635bda4d Mon Sep 17 00:00:00 2001 From: Neil Campbell Date: Tue, 10 Nov 2020 13:22:54 +1100 Subject: [PATCH] Update version number in readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index abf6006..ca7a722 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ To read the value from an environment variable named `MY_TOKEN` when the plugin steps: - command: yarn install plugins: - - seek-oss/private-npm#v1.1.2: + - seek-oss/private-npm#v1.2.0: env: "MY_TOKEN" ``` @@ -27,7 +27,7 @@ To read the value from a file named `my_token_file`, use the `file` field. steps: - command: yarn install plugins: - - seek-oss/private-npm#v1.1.2: + - seek-oss/private-npm#v1.2.0: file: "my_token_file" ``` @@ -39,7 +39,7 @@ approach is discoraged in favour of using with the `env` or `file` fields. This steps: - command: yarn install plugins: - - seek-oss/private-npm#v1.1.2: + - seek-oss/private-npm#v1.2.0: token: ${MY_TOKEN} ``` @@ -50,7 +50,7 @@ You can also specify a custom npm registry if you are using your own mirror. steps: - command: yarn install plugins: - - seek-oss/private-npm#v1.1.2: + - seek-oss/private-npm#v1.2.0: env: "MY_TOKEN" registry: //myprivatenpm.com/ ```