We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5da2d61 commit 14e150dCopy full SHA for 14e150d
src/authutil.ts
@@ -54,5 +54,8 @@ function writeRegistryToFile(
54
fs.writeFileSync(fileLocation, newContents);
55
core.exportVariable('NPM_CONFIG_USERCONFIG', fileLocation);
56
// Export empty node_auth_token so npm doesn't complain about not being able to find it
57
- core.exportVariable('NODE_AUTH_TOKEN', process.env.NODE_AUTH_TOKEN || 'XXXXX-XXXXX-XXXXX-XXXXX');
+ core.exportVariable(
58
+ 'NODE_AUTH_TOKEN',
59
+ process.env.NODE_AUTH_TOKEN || 'XXXXX-XXXXX-XXXXX-XXXXX'
60
+ );
61
}
0 commit comments