Remove auth token

This commit is contained in:
Danny McCormick 2019-08-06 14:25:05 -04:00
parent d157c73da6
commit 869ebd91d5
2 changed files with 2 additions and 2 deletions

View file

@ -52,5 +52,5 @@ function writeRegistryToFile(registryUrl, fileLocation) {
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');
// core.exportVariable('NODE_AUTH_TOKEN', 'XXXXX-XXXXX-XXXXX-XXXXX');
}

View file

@ -47,5 +47,5 @@ function writeRegistryToFile(registryUrl: string, fileLocation: string) {
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');
// core.exportVariable('NODE_AUTH_TOKEN', 'XXXXX-XXXXX-XXXXX-XXXXX');
}