From ccc7233e51fcfd3397bf14b7e022fc8217f77cfd Mon Sep 17 00:00:00 2001 From: David Wilson Date: Tue, 19 Mar 2019 11:50:26 -0700 Subject: [PATCH] Add GITHUB_TOKEN env var to the npm install step This will prevent issues when installing the `vscode-ripgrep` package --- script/vsts/release-branch-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/vsts/release-branch-build.yml b/script/vsts/release-branch-build.yml index de9d4e72f..e317cf48b 100644 --- a/script/vsts/release-branch-build.yml +++ b/script/vsts/release-branch-build.yml @@ -52,6 +52,8 @@ jobs: - script: | cd script\vsts npm install + env: + GITHUB_TOKEN: $(GITHUB_TOKEN) displayName: npm install - task: DownloadBuildArtifacts@0