Add input version-file (#486)

Closes: #411
This commit is contained in:
Kevin Stillhammer 2025-07-17 20:22:18 +02:00 committed by GitHub
parent c893ac1cb2
commit b75ff7d7b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 369 additions and 136 deletions

View file

@ -3,6 +3,7 @@ import path from "node:path";
import { getManifestFromRepo } from "@actions/tool-cache";
export const version = core.getInput("version");
export const versionFile = core.getInput("version-file");
export const pythonVersion = core.getInput("python-version");
export const activateEnvironment = core.getBooleanInput("activate-environment");
export const workingDirectory = core.getInput("working-directory");