1
0
Fork 0
mirror of https://code.forgejo.org/actions/setup-python synced 2025-06-11 21:44:10 +02:00

Updates to npm packages (#66)

* npm package updates

* Updates to ncc build
This commit is contained in:
Konrad Pabjan 2020-03-09 10:16:37 +01:00 committed by GitHub
parent 2ba2a92f71
commit 8ad00a65a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3786 additions and 3476 deletions

View file

@ -8,12 +8,10 @@ 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);
}