Allow custom parameters

This commit is contained in:
Webber
2020-01-27 19:39:49 +01:00
committed by Webber Takken
parent b382ae9023
commit 7d51d12262
5 changed files with 15 additions and 3 deletions

View File

@@ -11,6 +11,7 @@ class Input {
const buildName = core.getInput('buildName') || targetPlatform;
const buildsPath = core.getInput('buildsPath') || 'build';
const buildMethod = core.getInput('buildMethod'); // processed in docker file
const customParameters = core.getInput('customParameters') || '';
return {
unityVersion,
@@ -19,6 +20,7 @@ class Input {
buildName,
buildsPath,
buildMethod,
customParameters,
};
}
}