Try exporting blank token

This commit is contained in:
Danny McCormick 2019-08-06 09:47:51 -04:00
parent c09ef151f8
commit 3c9d73515f
2 changed files with 4 additions and 0 deletions

View File

@ -44,4 +44,6 @@ function writeRegistryToFile(registryUrl, fileLocation) {
newContents += `${registryString}${os.EOL}${authString}`;
fs.writeFileSync(fileLocation, newContents);
core.exportVariable('NPM_CONFIG_USERCONFIG', fileLocation);
// Export empty node_auth_token so npm doesn't complain about not being able to find it
core.exportVariable('NODE_AUTH_TOKEN', 'XXXXX-XXXXX-XXXXX-XXXXX');
}

View File

@ -42,4 +42,6 @@ function writeRegistryToFile(registryUrl: string, fileLocation: string) {
newContents += `${registryString}${os.EOL}${authString}`;
fs.writeFileSync(fileLocation, newContents);
core.exportVariable('NPM_CONFIG_USERCONFIG', fileLocation);
// Export empty node_auth_token so npm doesn't complain about not being able to find it
core.exportVariable('NODE_AUTH_TOKEN', 'XXXXX-XXXXX-XXXXX-XXXXX');
}