unity-builder/src/model/input.js

27 lines
755 B
JavaScript

import Platform from './platform';
const core = require('@actions/core');
class Input {
static getFromUser() {
// Input variables specified in workflows using "with" prop.
const unityVersion = core.getInput('unityVersion');
const targetPlatform = core.getInput('targetPlatform') || Platform.default;
const projectPath = core.getInput('projectPath') || '.';
const buildName = core.getInput('buildName') || targetPlatform;
const buildsPath = core.getInput('buildsPath') || 'build';
const buildMethod = core.getInput('buildMethod'); // processed in docker file
return {
unityVersion,
targetPlatform,
projectPath,
buildName,
buildsPath,
buildMethod,
};
}
}
export default Input;