Use userconfig and append trailing slash

This commit is contained in:
Danny McCormick 2019-08-06 14:08:18 -04:00
parent b9164e8546
commit 4d381b188a
2 changed files with 15 additions and 14 deletions

View file

@ -13,11 +13,10 @@ const path = __importStar(require("path"));
const core = __importStar(require("@actions/core"));
const github = __importStar(require("@actions/github"));
function configAuthentication(registryUrl) {
// const npmrc: string = path.resolve(
// process.env['RUNNER_TEMP'] || process.cwd(),
// '.npmrc'
// );
const npmrc = path.resolve(process.cwd(), '.npmrc');
const npmrc = path.resolve(process.env['RUNNER_TEMP'] || process.cwd(), '.npmrc');
if (!registryUrl.endsWith('/')) {
registryUrl += '/';
}
writeRegistryToFile(registryUrl, npmrc);
}
exports.configAuthentication = configAuthentication;
@ -47,7 +46,7 @@ function writeRegistryToFile(registryUrl, fileLocation) {
: `registry=${registryUrl}`;
newContents += `${authString}${os.EOL}${registryString}`;
fs.writeFileSync(fileLocation, newContents);
// core.exportVariable('NPM_CONFIG_USERCONFIG', fileLocation);
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');
}