To install a package from this repository, add the following git URL to your Unity project's Package Manager:
git@github.com:bluecadet/unity-packages.git?path=Packages/[PACKAGE_NAME]#[RELEASE_TAG]Replace [PACKAGE_NAME] with the desired package folder name (e.g., com.bluecadet.spring) and [RELEASE_TAG] with the appropriate version tag (e.g., spring/v1.2.3).
-
Update the version number in the
package.jsonfile of the package you are modifying. Follow Semantic Versioning guidelines. -
Commit your changes with a descriptive message.
-
Create a new tag for the version you are publishing. Use the format
package-name/vX.Y.Z, whereX.Y.Zis the version number. Excludecom.bluecadet.from the package name in the tag. For example, forcom.bluecadet.springversion1.2.3, the tag should bespring/v1.2.3.git tag -a spring/v1.2.3
-
Push the commit and the tag to the remote repository:
git push --tags