mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-05-31 13:56:13 -07:00
Add useHostNetwork to Input class
This commit is contained in:
committed by
frostebite
parent
a12e3e829e
commit
3d3a018c23
@@ -139,6 +139,12 @@ class Input {
|
|||||||
return Input.getInput('customParameters') ?? '';
|
return Input.getInput('customParameters') ?? '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static get useHostNetwork(): boolean {
|
||||||
|
const input = Input.getInput('useHostNetwork') ?? false;
|
||||||
|
|
||||||
|
return input === 'true';
|
||||||
|
}
|
||||||
|
|
||||||
static get versioningStrategy(): string {
|
static get versioningStrategy(): string {
|
||||||
return Input.getInput('versioning') ?? 'Semantic';
|
return Input.getInput('versioning') ?? 'Semantic';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user