| targetPlatform | Platform that the build should target. | yes | "" |
| unityVersion | Version of unity to use for building the project. Use "auto" to get from your ProjectSettings/ProjectVersion.txt | no | auto |
| customImage | Specific docker image that should be used for building the project | no | "" |
| projectPath | Relative path to the project to be built. | no | "" |
| buildName | Name of the build. Should not include a file extension. | no | "" |
| buildsPath | Path where the builds should be stored. | no | "" |
| buildMethod | Path to a Namespace.Class.StaticMethod to run to perform the build. | no | "" |
| manualExit | Suppresses `-quit`. Exit your build method using `EditorApplication.Exit(0)` instead. | no | "" |
| enableGpu | Launches unity without specifying `-nographics`. | no | "" |
| customParameters | Custom parameters to configure the build. | no | "" |
| versioning | The versioning scheme to use when building the project | no | Semantic |
| version | The version, when used with the "Custom" versioning scheme | no | "" |
| androidVersionCode | The android versionCode | no | "" |
| androidExportType | The android export type. Should be androidPackage for apk, androidAppBundle for aab, or androidStudioProject for an android studio project. | no | androidPackage |
| androidKeystoreName | The android keystoreName | no | "" |
| androidKeystoreBase64 | The base64 contents of the android keystore file | no | "" |
| androidKeystorePass | The android keystorePass | no | "" |
| androidKeyaliasName | The android keyaliasName | no | "" |
| androidKeyaliasPass | The android keyaliasPass | no | "" |
| androidTargetSdkVersion | The android target API level. | no | "" |
| androidSymbolType | The android symbol type to export. Should be "none", "public" or "debugging". | no | none |
| sshAgent | SSH Agent path to forward to the container | no | "" |
| sshPublicKeysDirectoryPath | Path to a directory containing SSH public keys to forward to the container. | no | "" |
| gitPrivateToken | [CloudRunner] Github private token to pull from github | no | "" |
| githubOwner | [CloudRunner] GitHub owner name or organization/team name | no | "" |
| runAsHostUser | Whether to run as a user that matches the host system or the default root container user. Only applicable to Linux hosts and containers. This is useful for fixing permission errors on Self-Hosted runners. | no | false |
| chownFilesTo | User and optionally group (user or user:group or uid:gid) to give ownership of the resulting build artifacts | no | "" |
| dockerCpuLimit | Number of CPU cores to assign the docker container. Defaults to all available cores on all platforms. | no | "" |
| dockerMemoryLimit | Amount of memory to assign the docker container. Defaults to 95% of total system memory rounded down to the nearest megabyte on Linux and 80% on Windows. On unrecognized platforms, defaults to 75% of total system memory. To manually specify a value, use the format <number><unit>, where unit is either m or g. ie: 512m = 512 megabytes | no | "" |
| dockerIsolationMode | Isolation mode to use for the docker container. Can be one of process, hyperv, or default. Default will pick the default mode as described by Microsoft where server versions use process and desktop versions use hyperv. Only applicable on Windows | no | default |
| containerRegistryRepository | Container registry and repository to pull image from. Only applicable if customImage is not set. | no | unityci/editor |
| containerRegistryImageVersion | Container registry image version. Only applicable if customImage is not set. | no | 3 |
| allowDirtyBuild | [CloudRunner] Allows the branch of the build to be dirty, and still generate the build. | no | "" |
| postBuildSteps | [CloudRunner] run a post build job in yaml format with the keys image, secrets (name, value object array), command string | no | "" |
| preBuildSteps | [CloudRunner] Run a pre build job after the repository setup but before the build job (in yaml format with the keys image, secrets (name, value object array), command line string) | no | "" |
| containerHookFiles | [CloudRunner] Specify the names (by file name) of custom steps to run before or after cloud runner jobs, must match a yaml step file inside your repo in the folder .game-ci/steps/ | no | "" |
| customHookFiles | [CloudRunner] Specify the names (by file name) of custom hooks to run before or after cloud runner jobs, must match a yaml step file inside your repo in the folder .game-ci/hooks/ | no | "" |
| customCommandHooks | [CloudRunner] Specify custom commands and trigger hooks (injects commands into jobs) | no | "" |
| customJob | [CloudRunner] Run a custom job instead of the standard build automation for cloud runner (in yaml format with the keys image, secrets (name, value object array), command line string) | no | "" |
| awsStackName | [CloudRunner] The Cloud Formation stack name that must be setup before using this option. | no | game-ci |
| providerStrategy | [CloudRunner] Either local, k8s or aws can be used to run builds on a remote cluster. Additional parameters must be configured. | no | local |
| containerCpu | [CloudRunner] Amount of CPU time to assign the remote build container | no | "" |
| containerMemory | [CloudRunner] Amount of memory to assign the remote build container | no | "" |
| readInputFromOverrideList | [CloudRunner] Comma separated list of input value names to read from "input override command" | no | "" |
| readInputOverrideCommand | [CloudRunner] Extend game ci by specifying a command to execute to pull input from external source e.g cloud provider secret managers | no | "" |
| kubeConfig | [CloudRunner] Supply a base64 encoded kubernetes config to run builds on kubernetes and stream logs until completion. | no | "" |
| kubeVolume | [CloudRunner] Supply a Persistent Volume Claim name to use for the Unity build. | no | "" |
| kubeStorageClass | [CloudRunner] Kubernetes storage class to use for cloud runner jobs, leave empty to install rook cluster. | no | "" |
| kubeVolumeSize | [CloudRunner] Amount of disc space to assign the Kubernetes Persistent Volume | no | 5Gi |
| cacheKey | [CloudRunner] Cache key to indicate bucket for cache | no | "" |
| watchToEnd | [CloudRunner] Whether or not to watch the build to the end. Can be used for especially long running jobs e.g imports or self-hosted ephemeral runners. | no | true |
| cacheUnityInstallationOnMac | Whether to cache the Unity hub and editor installation on MacOS | no | false |
| unityHubVersionOnMac | The version of Unity Hub to install on MacOS (e.g. 3.4.0). Defaults to latest available on brew if empty string or nothing is specified. | no | "" |
| unityLicensingServer | The Unity licensing server address to use for activating Unity. | no | "" |
| dockerWorkspacePath | The path to mount the workspace inside the docker container. For windows, leave out the drive letter. For example c:/github/workspace should be defined as /github/workspace | no | /github/workspace |
| skipActivation | Skip the activation/deactivation of Unity. This assumes Unity is already activated. | no | false |