Skip to main content
Version: v4 (current)

Custom Job

Override the default build workflow entirely by specifying the customJob parameter with a YAML job definition.

- uses: game-ci/unity-builder@v4
with:
providerStrategy: aws
customJob: |
- name: my-custom-step
image: ubuntu
commands: |
echo "Running custom job"
gitPrivateToken: ${{ secrets.GITHUB_TOKEN }}

This replaces the standard build steps with your own. Useful for running non-Unity workloads or fully custom pipelines through Orchestrator's cloud infrastructure.