Add input no-project in combination with activate-environment

This commit is contained in:
Kevin Stillhammer 2026-04-16 14:55:54 +02:00
parent 7dd591db95
commit bbc3b65ad6
No known key found for this signature in database
8 changed files with 71 additions and 4 deletions

2
dist/save-cache/index.cjs generated vendored
View file

@ -62968,6 +62968,7 @@ function loadInputs() {
const versionFile = getVersionFile(workingDirectory);
const pythonVersion = getInput("python-version");
const activateEnvironment = getBooleanInput("activate-environment");
const noProject = getBooleanInput("no-project");
const venvPath = getVenvPath(workingDirectory, activateEnvironment);
const checksum = getInput("checksum");
const enableCache = getEnableCache();
@ -63004,6 +63005,7 @@ function loadInputs() {
ignoreEmptyWorkdir,
ignoreNothingToCache,
manifestFile,
noProject,
pruneCache: pruneCache2,
pythonDir,
pythonVersion,