Skip to content

Commit

Permalink
Document new buildProfile config option
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelBuhler committed Jan 29, 2025
1 parent 92691c9 commit f78f98d
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions docs/03-github/04-builder.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,24 @@ _**required:** `false`_ _**default:** `""`_
#### projectPath

Specify the path to your Unity project to be built. The path should be relative to the root of your
project.
repository.

_**required:** `false`_ _**default:** `<your project root>`_
_**required:** `false`_ _**default:** `<your repository root>`_

#### buildProfile

Provide a path to a build profile. The path should be relative to the root of your
Unity project (i.e. relative to `projectPath`). See the
[Unity documentation](https://docs.unity3d.com/Manual/build-profiles.html) for more information
on using build profiles.

```yaml
- uses: game-ci/unity-builder@v4
with:
buildProfile: 'Assets/Settings/Build Profiles/WindowsDemo.asset'
```

_**required:** `false`_ _**default:** Unity will do a platform build for the `targetPlatform`._

#### buildName

Expand Down

0 comments on commit f78f98d

Please sign in to comment.