Try exporting blank token

pull/195/head
Danny McCormick 6 years ago
parent c09ef151f8
commit 3c9d73515f

@ -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');
}

@ -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');
}

Loading…
Cancel
Save