2019-06-27 09:12:00 +08:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as finder from './find-python';
|
2019-07-09 02:43:29 +08:00
|
|
|
import * as path from 'path';
|
2019-06-27 09:12:00 +08:00
|
|
|
|
|
|
|
async function run() {
|
2019-07-04 02:04:51 +08:00
|
|
|
try {
|
|
|
|
const version: string = core.getInput('version');
|
|
|
|
if (version) {
|
|
|
|
const arch: string = core.getInput('architecture', {required: true});
|
|
|
|
await finder.findPythonVersion(version, arch);
|
|
|
|
}
|
2019-07-09 02:43:29 +08:00
|
|
|
const matchersPath = path.join(__dirname, '..', '.github');
|
|
|
|
console.log(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
|
2019-07-04 02:04:51 +08:00
|
|
|
} catch (err) {
|
|
|
|
core.setFailed(err.message);
|
2019-06-27 09:12:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run();
|