Publish to OpenUPM as part of the release workflow - #6
Merged
Conversation
📝 WalkthroughWalkthroughThe release workflow now publishes ChangesOpenUPM release publishing
Estimated code review effort: 2 (Simple) | ~10 minutes Sequence Diagram(s)sequenceDiagram
participant GitHubActions
participant GitHubRelease
participant OpenUPM
GitHubActions->>GitHubRelease: create and package tagged release
GitHubActions->>OpenUPM: publish com.appstack.unity-sdk with github.ref_name
OpenUPM-->>GitHubActions: report scan and installability status
Suggested reviewers: Poem
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
✨ Simplify code
Comment |
- Updated RELEASING.md to clarify the release workflow, including OpenUPM scan triggers and installation checks. - Modified release.yml to include a step for publishing to OpenUPM, ensuring the package is built and published correctly. - Revised .openupm/package-metadata.yml to reflect authoritative metadata and updated package details, including description and topics. - Improved documentation to guide users on managing package metadata and OpenUPM registration.
jsantelys-as
force-pushed
the
feat/jsantelys/add-publish-workflow
branch
from
July 17, 2026 06:15
7186f52 to
1c755b3
Compare
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
Wires OpenUPM publishing into the release pipeline so a version tag both cuts
the GitHub Release and publishes the package to OpenUPM, and documents the flow.
Changes
.github/workflows/release.yml: after creating the GitHub Release, thejob now publishes to OpenUPM via
openupm/openupm-action@v1, keyed off thepushed tag. Adds
id-token: writeso the action's OIDC flow works without anOpenUPM token or repository secret.
.openupm/package-metadata.yml: converted to a reference copy of theregistered listing (the authoritative file lives in
openupm/openupm), withupdated description, topics, cover image,
hunter, and Git tracking mode.RELEASING.md: documents the OpenUPM scan/wait step, the OIDC-basedaction (no secret required), where to update authoritative listing metadata,
and the stable-tag policy.
Notes
builds each version with
npm packon the matching Git tag rather than theZIP attached to the GitHub Release.
1.0.1);supporting prereleases requires updating both
package.jsonand the tagfilter so the parsed tag version stays an exact match.