From 14e150d2b14fabd9056bb0455908f4553afb6961 Mon Sep 17 00:00:00 2001 From: Andres Vargas Date: Wed, 21 Oct 2020 18:22:21 -0500 Subject: [PATCH] update changes --- src/authutil.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/authutil.ts b/src/authutil.ts index fe7775a..bdfb00c 100644 --- a/src/authutil.ts +++ b/src/authutil.ts @@ -54,5 +54,8 @@ function writeRegistryToFile( 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', process.env.NODE_AUTH_TOKEN || 'XXXXX-XXXXX-XXXXX-XXXXX'); + core.exportVariable( + 'NODE_AUTH_TOKEN', + process.env.NODE_AUTH_TOKEN || 'XXXXX-XXXXX-XXXXX-XXXXX' + ); }