add runtime-basedir input

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
ArunKumarT1995
2025-08-06 18:48:28 +05:30
committed by CrazyMax
parent 29412e2cf6
commit de8d0f39ec
4 changed files with 10 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ export interface Inputs {
context: string;
setHost: boolean;
rootless: boolean;
runtimeBasedir?: string;
}
export function getInputs(): Inputs {
@@ -27,7 +28,8 @@ export function getInputs(): Inputs {
tcpPort: Util.getInputNumber('tcp-port'),
context: core.getInput('context'),
setHost: core.getBooleanInput('set-host'),
rootless: core.getBooleanInput('rootless')
rootless: core.getBooleanInput('rootless'),
runtimeBasedir: core.getInput('runtime-basedir')
};
}