build new

This commit is contained in:
Evgenii Korolevskii 2023-03-31 00:02:34 +02:00
parent 60157fe074
commit ebb31fa204
2 changed files with 6 additions and 6 deletions

6
dist/setup/index.js vendored
View File

@ -66995,9 +66995,9 @@ function run() {
let pythonVersion = '';
const arch = core.getInput('architecture') || os.arch();
const updateEnvironment = core.getBooleanInput('update-environment');
// const pythonBinPath = `${process.env.HOME}/.local/bin`;
// core.info(`Adding ${pythonBinPath} to PATH`)
// core.exportVariable('PATH', `${pythonBinPath}:${process.env.PATH}`);
const pythonBinPath = `${process.env.HOME}/.local/bin`;
core.debug(`Adding ${pythonBinPath} to PATH`);
core.exportVariable('PATH', `${pythonBinPath}:${process.env.PATH}`);
core.startGroup('Installed versions');
for (const version of versions) {
if (isPyPyVersion(version)) {

View File

@ -83,9 +83,9 @@ async function run() {
let pythonVersion = '';
const arch: string = core.getInput('architecture') || os.arch();
const updateEnvironment = core.getBooleanInput('update-environment');
// const pythonBinPath = `${process.env.HOME}/.local/bin`;
// core.info(`Adding ${pythonBinPath} to PATH`)
// core.exportVariable('PATH', `${pythonBinPath}:${process.env.PATH}`);
const pythonBinPath = `${process.env.HOME}/.local/bin`;
core.debug(`Adding ${pythonBinPath} to PATH`)
core.exportVariable('PATH', `${pythonBinPath}:${process.env.PATH}`);
core.startGroup('Installed versions');
for (const version of versions) {
if (isPyPyVersion(version)) {