[RN][CI] add React Native release publishing flow#192
Draft
Conversation
Contributor
Author
|
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
279a5c4 to
85a89b8
Compare
5e10d4e to
345d41c
Compare
85a89b8 to
42271d0
Compare
42271d0 to
19a0381
Compare
|
|
||
| if [[ "$VERSION" == *-* ]]; then | ||
| PRERELEASE="true" | ||
| NPM_TAG="next" |
Contributor
Author
There was a problem hiding this comment.
this matches what the web workflow does too
1649f78 to
4d22b7f
Compare
This was referenced May 28, 2026
4d22b7f to
3cea7db
Compare
700a4a1 to
6601e20
Compare
3cea7db to
fc790ec
Compare
fc790ec to
a31a93b
Compare
a31a93b to
e6a6ab8
Compare
165f743 to
acc13b7
Compare
acc13b7 to
d3889c9
Compare
e6a6ab8 to
0c372c3
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.

Stack Context
This is a follow-up stacked on the iOS/Android release workflow PR from Friday
What?
React Nativeto workflow_dispatch for releasesreact-native/X.Y.Ztagreact-native/namespace.I also fixed some output on the release plan

Other
In order to produce react-native
4.0.0-alpha.1I needed to update podspec and gradle to point to the swift/android4.0.0-alpha.1versions published last weekWe have this awkward process for gradle, where the android sdk has to build and publish to
mavenLocalfor local dev, this is gated behind theUSE_LOCAL_SDKflagThis could fail silently if mavenLocal didn't have a 4.0.0-alpha.1 version, so I added an exclusiveContent filter which ensures the checkout-kit library, when the
USE_LOCAL_SDKflag is true, will fail to build, ensuring we don't accidentally false positive test against a published SDK in maven.