mirror of
https://github.com/actions/setup-python.git
synced 2025-01-11 18:45:17 +00:00
f8fb48e9f7
* output installed version number after setup * set output for the installed version
23 lines
670 B
TypeScript
23 lines
670 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);
|
|
console.log(
|
|
`Successfully setup ${installed.impl} (${installed.version}).`
|
|
);
|
|
}
|
|
const matchersPath = path.join(__dirname, '..', '.github');
|
|
console.log(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
|
|
} catch (err) {
|
|
core.setFailed(err.message);
|
|
}
|
|
}
|
|
|
|
run();
|