Add auth and ci

This commit is contained in:
Danny McCormick 2019-05-31 12:17:28 -04:00
parent eac926003b
commit caa2ca642d
9 changed files with 139 additions and 17 deletions

40
lib/auth.js Normal file
View file

@ -0,0 +1,40 @@
"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 core = __importStar(require("@actions/core"));
const path = __importStar(require("path"));
const fs = __importStar(require("fs"));
const os = __importStar(require("os"));
function setNpmrc(registryUrl, registryToken, authFile) {
let projectNpmrc = path.resolve(process.cwd(), '.npmrc');
if (authFile) {
projectNpmrc = path.resolve(process.cwd(), authFile);
}
let newContents = '';
if (fs.existsSync(projectNpmrc)) {
const curContents = fs.readFileSync(projectNpmrc, 'utf8');
curContents.split(os.EOL).forEach(line => {
// 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 +
':_authToken=${NPM_TOKEN}';
fs.writeFileSync(projectNpmrc, newContents);
core.exportSecret('NPM_TOKEN', registryToken);
}
exports.setNpmrc = setNpmrc;