Add useHostNetwork to Input class

This commit is contained in:
Daniel Lupiañez Casares
2026-04-17 19:22:47 +02:00
committed by frostebite
parent a12e3e829e
commit 3d3a018c23

View File

@@ -139,6 +139,12 @@ class Input {
return Input.getInput('customParameters') ?? '';
}
static get useHostNetwork(): boolean {
const input = Input.getInput('useHostNetwork') ?? false;
return input === 'true';
}
static get versioningStrategy(): string {
return Input.getInput('versioning') ?? 'Semantic';
}