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

pull/84/head
mob-sakai 2020-12-17 22:30:51 +09:00 committed by GitHub
parent 3fca186a7b
commit a067c3d5ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

File diff suppressed because one or more lines are too long

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,