mirror of
https://gitea.com/actions/setup-node.git
synced 2024-11-10 17:49:24 +08:00
45 lines
1.9 KiB
JavaScript
45 lines
1.9 KiB
JavaScript
"use strict";
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
result["default"] = mod;
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const fs = __importStar(require("fs"));
|
|
const os = __importStar(require("os"));
|
|
const path = __importStar(require("path"));
|
|
const core = __importStar(require("@actions/core"));
|
|
const github = __importStar(require("@actions/github"));
|
|
function configAuthentication(registryUrl) {
|
|
const npmrc = path.resolve(process.cwd(), '.npmrc');
|
|
writeRegistryToFile(registryUrl, npmrc);
|
|
}
|
|
exports.configAuthentication = configAuthentication;
|
|
function writeRegistryToFile(registryUrl, fileLocation) {
|
|
let scope = core.getInput('scope');
|
|
if (!scope && registryUrl.indexOf('npm.pkg.github.com') > -1) {
|
|
scope = github.context.repo.owner;
|
|
}
|
|
if (scope && scope[0] != '@') {
|
|
scope = '@' + scope;
|
|
}
|
|
core.debug(`Setting auth in ${fileLocation}`);
|
|
let newContents = '';
|
|
if (fs.existsSync(fileLocation)) {
|
|
const curContents = fs.readFileSync(fileLocation, 'utf8');
|
|
curContents.split(os.EOL).forEach((line) => {
|
|
// Add current contents unless they are setting the registry
|
|
if (!line.toLowerCase().startsWith('registry')) {
|
|
newContents += line + os.EOL;
|
|
}
|
|
});
|
|
}
|
|
// Remove http: or https: from front of registry.
|
|
const authString = registryUrl.replace(/(^\w+:|^)/, '') + ':_authToken=${NODE_AUTH_TOKEN}';
|
|
const registryString = scope ? `${scope}:registry=${registryUrl}` : `registry=${registryUrl}`;
|
|
newContents += `${registryString}${os.EOL}always-auth=true${os.EOL}${authString}`;
|
|
fs.writeFileSync(fileLocation, newContents);
|
|
}
|