Add semantic versioning logic

This commit is contained in:
Webber
2020-04-21 23:03:12 +02:00
committed by Webber Takken
parent 328b0d8ac0
commit a513e5b640
9 changed files with 140 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace UnityBuilderAction.Versioning
{
public static class VersionGenerator
{
public static string Generate()
{
return Git.GenerateSemanticCommitVersion();
}
}
}