diff --git a/dist/setup/index.js b/dist/setup/index.js index fc18a0b..0a3bf68 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -99397,7 +99397,7 @@ function setupPython() { venvBinPath = ".venv/Scripts"; } core.addPath(venvBinPath); - core.exportVariable("VIRTUAL_ENV", ".venv"); + core.exportVariable("VIRTUAL_ENV", path.resolve(".venv")); } }); } diff --git a/src/setup-uv.ts b/src/setup-uv.ts index 13a90b5..408b005 100644 --- a/src/setup-uv.ts +++ b/src/setup-uv.ts @@ -143,7 +143,7 @@ async function setupPython(): Promise { venvBinPath = ".venv/Scripts"; } core.addPath(venvBinPath); - core.exportVariable("VIRTUAL_ENV", ".venv"); + core.exportVariable("VIRTUAL_ENV", path.resolve(".venv")); } }