fix: parameter 'customImage' is not working (#83)

This commit is contained in:
mob-sakai
2020-12-17 22:30:51 +09:00
committed by GitHub
parent 3fca186a7b
commit a067c3d5ab
2 changed files with 3 additions and 1 deletions

View File

@@ -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,