3
0
Fork 0
mirror of https://gitea.com/actions/setup-python.git synced 2024-11-25 11:39:34 +01:00
setup-python/src/setup-python.ts
Konrad Pabjan 8ad00a65a6
Updates to npm packages (#66)
* npm package updates

* Updates to ncc build
2020-03-09 10:16:37 +01:00

20 lines
649 B
TypeScript

import * as core from '@actions/core';
import * as finder from './find-python';
import * as path from 'path';
async function run() {
try {
let version = core.getInput('python-version');
if (version) {
const arch: string = core.getInput('architecture', {required: true});
const installed = await finder.findPythonVersion(version, arch);
core.info(`Successfully setup ${installed.impl} (${installed.version})`);
}
const matchersPath = path.join(__dirname, '..', '.github');
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
} catch (err) {
core.setFailed(err.message);
}
}
run();