ci: installer export on unity-builder@v5 + allowDirtyBuild#11
Open
IvanMurzak wants to merge 1 commit into
Open
ci: installer export on unity-builder@v5 + allowDirtyBuild#11IvanMurzak wants to merge 1 commit into
IvanMurzak wants to merge 1 commit into
Conversation
v4 refused a dirty working tree for semantic versioning, breaking the installer export on freshly-migrated repos. We version the installer from package.json (via PackageExporter), not git, so allowDirtyBuild is correct. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
game-ci/unity-builder@v4→@v5and addallowDirtyBuild: true.Why
unity-builder@v4defaults to semantic versioning and refuses to build on a dirty working tree ("Branch is dirty. Refusing to base semantic version on uncommitted changes"). After the EditMode test step runs, the Unity project leaves untracked/generated files, so the Export step failed on repos freshly created/migrated from this template. The installer's version comes frompackage.json(viaPackageExporter), not from git, soallowDirtyBuild: trueis the correct decoupling — and@v5matches the proven Unity-MCP extension workflows.Discovered while migrating Unity-Gyroscope-Manager / Unity-Mouse-Parallax to this template structure; both hit this and are fixed by the same change.