2019-08-05 11:51:04 -04:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as os from 'os';
|
2019-08-05 11:35:39 -04:00
|
|
|
import * as path from 'path';
|
2019-08-05 11:51:04 -04:00
|
|
|
import * as core from '@actions/core';
|
2019-08-05 11:35:39 -04:00
|
|
|
|
2019-08-05 11:51:04 -04:00
|
|
|
export function configAuth(registryUrl: string) {
|
2019-08-05 11:35:39 -04:00
|
|
|
let npmrc: string = path.resolve(process.cwd(), '.npmrc');
|
|
|
|
let yarnrc: string = path.resolve(process.cwd(), '.yarnrc');
|
|
|
|
|
2019-08-05 11:57:53 -04:00
|
|
|
writeRegistryToFile(registryUrl, npmrc);
|
|
|
|
writeRegistryToFile(registryUrl, yarnrc);
|
2019-08-05 11:35:39 -04:00
|
|
|
}
|
|
|
|
|
2019-08-05 11:57:53 -04:00
|
|
|
function writeRegistryToFile(registryUrl: string, fileLocation: string) {
|
2019-08-05 11:51:04 -04:00
|
|
|
core.debug(`Setting auth in ${fileLocation}`);
|
|
|
|
let newContents = '';
|
|
|
|
if (fs.existsSync(fileLocation)) {
|
|
|
|
const curContents = fs.readFileSync(fileLocation, 'utf8');
|
|
|
|
curContents.split(os.EOL).forEach((line: string) => {
|
|
|
|
// Add current contents unless they are setting the registry
|
|
|
|
if (!line.startsWith('registry')) {
|
|
|
|
newContents += line + os.EOL;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
newContents +=
|
|
|
|
'registry=' +
|
|
|
|
registryUrl +
|
|
|
|
os.EOL +
|
|
|
|
'always-auth=true' +
|
|
|
|
os.EOL +
|
|
|
|
registryUrl.replace(/(^\w+:|^)/, '') +
|
2019-08-05 11:57:53 -04:00
|
|
|
':_authToken=${NODE_AUTH_TOKEN}';
|
2019-08-05 11:51:04 -04:00
|
|
|
fs.writeFileSync(fileLocation, newContents);
|
2019-08-05 11:35:39 -04:00
|
|
|
}
|