From a5b462efd5f384717a7088d66a431a85a97ad0ec Mon Sep 17 00:00:00 2001 From: Jason Walton Date: Tue, 10 Sep 2019 15:08:23 -0400 Subject: [PATCH] Fix example to use NPM_TOKEN instead of YARN_TOKEN. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dec3ecd5..ba4a29bc 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ steps: # script could steal NODE_AUTH_TOKEN. - run: npm install --ignore-scripts env: - NODE_AUTH_TOKEN: ${{ secrets.YARN_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # `npm rebuild` will run all those post-install scritps for us. - run: npm rebuild && npm run prepare --if-present ```