Setup Release -> Publish Package workflow#18
Merged
Conversation
Create publish.yml
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.
The main goal of these changes is to introduce a GitHub Actions workflow that publishes the Babylon React Native NPM package when a GitHub Release is created (expects releases to be tagged with a valid version, e.g.
v0.1.2-alpha.1,v0.1.2, etc.). For testing purposes, I had this publish the package to this GitHub repos package feed, but later we will switch it to npmjs.com. The changes required for this are:publish.yml, a simple GitHub Actions workflow that is triggered by a Release being created. It basically just gets the version number from the release tag and publishes the NPM package. Note that my plan is to just leave the version in the package.json as 0.0.0 which is fine for local builds, and the version will only be set (but not committed back) when publishing a package following the creation of a Release.package.json) to @babylonjs/react-native.react-native-babylonfolder to@babylonjs/react-native. NOTE: After syncing this change, you will need togit clean -dxffor the react native playground app won't launch.