unity-upm-gitpackagepusher

Unity Plugin that, given a folder with the unity package layout, it will automatically push it to Github and create a branch and tags with only its contents in order to use it later as a dependency for another project.

MIT License

Stars
7
Committers
1

Unity Package Manager Git Pusher

Given a folder with the unity package layout, this Unity plugin will allow you to automatically push a version of it to Github and create specific branches and tags with only its contents in order to use it later as a upm dependency for another Unity project.

This is a simple tool to automatically push your code into a structure interpreted by UPM. It uses a special branch for all the stripped code using the package name, and it creates a tag with the package.name-version based on the current package.json data.

For example, if you have a project com.gemserk.myproject in version 0.1.0 with the following structure:

Root/
    Assets/
        MyCustomLibrary/
            package.json
            MyCustomLibrary.asmdef
            Code/
                MyCode.cs
    OtherScripts/

It will create a branch named com.gemserk.myproject with only the code related to the package, and with the following content

Root/
    MyCustomLibrary/
        package.json
        MyCustomLibrary.asmdef
        Code/
            MyCode.cs

And a tag com.gemserk.myproject-0.1.0 pointing to current version, and will increase version patch by one in master.

The project itself is published using its own code.

Install

Download from OpenUPM or just open Package Manager and add git URL https://github.com/acoppes/upmgitpusher.git#com.gemserk.upmgitpusher for latest version or check tags for previous versions.

How to use

Just create a folder with your package.json and all the stuff you want to export.

Then, select Assets/UPM Git Package/Publish Patch

Preferences

You can configure some default behaviours in user preferences

TODO

  • Publish Major and Minor version changes too.
  • Select specific package.json instead of just finding it (in the case there are multiple libraries).
  • Support for having a latest tag which points to the last published release.
  • Support for -preview version notation.
Badges
Extracted from project README's
openupm
Related Projects