fix: parameter 'customImage' is not working (#83)
parent
3fca186a7b
commit
a067c3d5ab
File diff suppressed because one or more lines are too long
|
@ -15,6 +15,7 @@ class Input {
|
|||
static getFromUser() {
|
||||
// Input variables specified in workflow using "with" prop.
|
||||
const unityVersion = getInput('unityVersion') || '2019.2.11f1';
|
||||
const customImage = getInput('customImage') || '';
|
||||
const testMode = getInput('testMode') || 'all';
|
||||
const rawProjectPath = getInput('projectPath') || '.';
|
||||
const rawArtifactsPath = getInput('artifactsPath') || 'artifacts';
|
||||
|
@ -46,6 +47,7 @@ class Input {
|
|||
// Return sanitised input
|
||||
return {
|
||||
unityVersion,
|
||||
customImage,
|
||||
projectPath,
|
||||
testMode,
|
||||
artifactsPath,
|
||||
|
|
Loading…
Reference in New Issue