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() {
|
static getFromUser() {
|
||||||
// Input variables specified in workflow using "with" prop.
|
// Input variables specified in workflow using "with" prop.
|
||||||
const unityVersion = getInput('unityVersion') || '2019.2.11f1';
|
const unityVersion = getInput('unityVersion') || '2019.2.11f1';
|
||||||
|
const customImage = getInput('customImage') || '';
|
||||||
const testMode = getInput('testMode') || 'all';
|
const testMode = getInput('testMode') || 'all';
|
||||||
const rawProjectPath = getInput('projectPath') || '.';
|
const rawProjectPath = getInput('projectPath') || '.';
|
||||||
const rawArtifactsPath = getInput('artifactsPath') || 'artifacts';
|
const rawArtifactsPath = getInput('artifactsPath') || 'artifacts';
|
||||||
|
@ -46,6 +47,7 @@ class Input {
|
||||||
// Return sanitised input
|
// Return sanitised input
|
||||||
return {
|
return {
|
||||||
unityVersion,
|
unityVersion,
|
||||||
|
customImage,
|
||||||
projectPath,
|
projectPath,
|
||||||
testMode,
|
testMode,
|
||||||
artifactsPath,
|
artifactsPath,
|
||||||
|
|
Loading…
Reference in New Issue