https://github.com/game-ci/unity-orb
Build and test Unity projects for several platforms using CircleCI.
https://github.com/game-ci/unity-orb
circleci unity
Last synced: 12 months ago
JSON representation
Build and test Unity projects for several platforms using CircleCI.
- Host: GitHub
- URL: https://github.com/game-ci/unity-orb
- Owner: game-ci
- License: mit
- Created: 2021-12-17T14:31:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-08T01:49:29.000Z (over 1 year ago)
- Last Synced: 2025-06-11T09:26:52.682Z (about 1 year ago)
- Topics: circleci, unity
- Language: Shell
- Homepage: https://circleci.com/developer/orbs/orb/game-ci/unity
- Size: 177 KB
- Stars: 10
- Watchers: 2
- Forks: 14
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Unity Orb
[](https://circleci.com/gh/game-ci/unity-orb) [](https://circleci.com/orbs/registry/orb/game-ci/unity) [](https://raw.githubusercontent.com/game-ci/unity-orb/master/LICENSE) [](https://discuss.circleci.com/c/ecosystem/orbs)
Easily build and test your Unity project.
---
## Resources
[CircleCI Orb Registry Page](https://circleci.com/orbs/registry/orb/game-ci/unity) - The official registry page of this orb for all versions, executors, commands, and jobs described.
[CircleCI Orb Docs](https://circleci.com/docs/2.0/orb-intro/#section=configuration) - Docs for using, creating, and publishing CircleCI Orbs.
### How to Contribute
We welcome [issues](https://github.com/game-ci/unity-orb/issues) to and [pull requests](https://github.com/game-ci/unity-orb/pulls) against this repository!
### How to Publish An Update
1. Merge pull requests with desired changes to the main branch.
- For the best experience, squash-and-merge and use [Conventional Commit Messages](https://conventionalcommits.org/).
2. Find the current version of the orb.
- You can run `circleci orb info game-ci/unity | grep "Latest"` to see the current version.
3. Create a [new Release](https://github.com/game-ci/unity-orb/releases/new) on GitHub.
- Click "Choose a tag" and _create_ a new [semantically versioned](http://semver.org/) tag. (ex: v1.0.0)
- We will have an opportunity to change this before we publish if needed after the next step.
4. Click _"+ Auto-generate release notes"_.
- This will create a summary of all of the merged pull requests since the previous release.
- If you have used _[Conventional Commit Messages](https://conventionalcommits.org/)_ it will be easy to determine what types of changes were made, allowing you to ensure the correct version tag is being published.
5. Now ensure the version tag selected is semantically accurate based on the changes included.
6. Click _"Publish Release"_.
- This will push a new tag and trigger your publishing pipeline on CircleCI.
### Manual Deploy
If you want a private orb for your build env. The following steps allow you to do so. These are adapted from the CircleCI
[Manual Orb Authoring Process](https://circleci.com/docs/orb-author-validate-publish/#publish-your-orb)
```bash
circleci namespace create --org-id
circleci orb create / --private
circleci orb pack src > unity-orb.yml
circleci orb publish unity-orb.yml /@dev:first
circleci orb publish promote /@dev:first patch
```