more CI settings to release automatically

This commit is contained in:
Yoshifumi Kawai
2020-04-15 15:29:29 +09:00
parent 5e2a4934dd
commit 139f5f7914
3 changed files with 26 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ public static class PackageExporter
var path = Path.Combine(Application.dataPath, root);
var assets = Directory.EnumerateFiles(path, "*", SearchOption.AllDirectories)
.Where(x => Path.GetExtension(x) == ".cs" || Path.GetExtension(x) == ".asmdef" || Path.GetExtension(x) == ".json")
.Where(x => Path.GetExtension(x) == ".cs" || Path.GetExtension(x) == ".asmdef" || Path.GetExtension(x) == ".json" || Path.GetExtension(x) == ".meta")
.Select(x => "Assets" + x.Replace(Application.dataPath, "").Replace(@"\", "/"))
.ToArray();

View File

@@ -18,7 +18,7 @@ namespace UniRx.Async.Editor
static UniTaskTrackerWindow window;
[MenuItem("Window/UniRx/UniTask Tracker")]
[MenuItem("Window/UniTask Tracker")]
public static void OpenWindow()
{
if (window != null)