npm package updates

This commit is contained in:
Konrad Pabjan 2020-03-09 09:53:13 +01:00
parent 2ba2a92f71
commit fdf2f3653d
4 changed files with 1252 additions and 1191 deletions

View file

@ -8,12 +8,12 @@ async function run() {
if (version) {
const arch: string = core.getInput('architecture', {required: true});
const installed = await finder.findPythonVersion(version, arch);
console.log(
`Successfully setup ${installed.impl} (${installed.version}).`
core.info(
`Successfully setup ${installed.impl} (${installed.version})`
);
}
const matchersPath = path.join(__dirname, '..', '.github');
console.log(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
} catch (err) {
core.setFailed(err.message);
}