Set VIRTUAL_ENV to .venv instead of .venv/bin

This commit is contained in:
Kevin Stillhammer 2024-12-23 17:42:05 +01:00
parent d174a24c07
commit 45ef8cec4b
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

2
dist/setup/index.js generated vendored
View file

@ -99349,7 +99349,7 @@ function setupPython() {
venvBinPath = ".venv/Scripts";
}
core.addPath(venvBinPath);
core.exportVariable("VIRTUAL_ENV", venvBinPath);
core.exportVariable("VIRTUAL_ENV", ".venv");
}
});
}

View file

@ -143,7 +143,7 @@ async function setupPython(): Promise<void> {
venvBinPath = ".venv/Scripts";
}
core.addPath(venvBinPath);
core.exportVariable("VIRTUAL_ENV", venvBinPath);
core.exportVariable("VIRTUAL_ENV", ".venv");
}
}