Add venv/bin as absolute path to PATH (#241)

Fixes: #239
This commit is contained in:
Kevin Stillhammer 2025-01-16 10:14:32 +01:00 committed by GitHub
parent 2487ffc9aa
commit 4e3dbecc19
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

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

@ -101686,7 +101686,7 @@ function setupPython() {
if (process.platform === "win32") {
venvBinPath = ".venv/Scripts";
}
core.addPath(venvBinPath);
core.addPath(path.resolve(venvBinPath));
core.exportVariable("VIRTUAL_ENV", path.resolve(".venv"));
}
});

View file

@ -161,7 +161,7 @@ async function setupPython(): Promise<void> {
if (process.platform === "win32") {
venvBinPath = ".venv/Scripts";
}
core.addPath(venvBinPath);
core.addPath(path.resolve(venvBinPath));
core.exportVariable("VIRTUAL_ENV", path.resolve(".venv"));
}
}