mirror of
https://github.com/actions/setup-python.git
synced 2024-11-25 01:38:56 +00:00
8ad00a65a6
* npm package updates * Updates to ncc build
20 lines
649 B
TypeScript
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();
|