feat(ci): automated release workflow with semantic versioning#257
Merged
jdnichollsc merged 15 commits intomasterfrom Mar 16, 2026
Merged
feat(ci): automated release workflow with semantic versioning#257jdnichollsc merged 15 commits intomasterfrom
jdnichollsc merged 15 commits intomasterfrom
Conversation
Fix HEAD promise method incorrectly calling DELETE
added `maifeeulasad` to the list of contributors
added on production usage
…on-maifee fix for abruptly aborted requests
- Add release.yml: auto version bump, changelog generation, GitHub Release, NuGet publish, and UPM/NuGet branch splitting - Triggers on push to master + manual workflow_dispatch - Updates all 4 version files (package.json, .csproj, .nuspec, AssemblyInfo.cs) - Generates Keep a Changelog format entries with contributor credits - Creates GitHub Release named "Release X.Y.Z" with tag vX.Y.Z - Publishes NuGet package via NUGET_API_KEY secret - Sync version files on develop to 2.6.3 - Update ci.yml with paths-ignore to prevent race conditions
- Build and attach source tarball to GitHub Releases (no binaries in git) - Add .gitignore rules for Unity stub DLLs and build artifacts - Fix NuGet publish condition to use secrets context - Addresses issue #219 (missing meta files in UPM)
- Build real .unitypackage using Unity package format (GUID dirs with asset, asset.meta, pathname) — no Unity Editor required - Switch from dotnet pack to nuget pack (old-style .csproj is not SDK-compatible, dotnet pack would fail) - Tag UPM branch with upm/X.Y.Z for OpenUPM version detection - Clean UPM branch removes non-Unity files (fixes #219) - Attach .unitypackage to GitHub Release (matches README install docs)
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
release.yml) that handles the full release lifecycleci.ymlto avoid race conditions with the release workflowWhat the release workflow does
feat:→ minor,fix:→ patch,BREAKING CHANGE→ major)vX.Y.Zand nameRelease X.Y.ZNUGET_API_KEYsecret — already configured)Triggers
Test plan
🤖 Generated with Claude Code