Skip to content

Commit f73ab8b

Browse files
committed
Cleanup build script
1 parent f985896 commit f73ab8b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.fsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ Target "Pack" <| fun _ -> ()
3939

4040
Target "PublishNuget" <| fun _ -> publishNugetPackages solution
4141

42+
Target "PublishUnity" <| fun _ -> ()
43+
4244
Target "Publish" <| fun _ -> ()
4345

4446
Target "CI" <| fun _ -> ()
@@ -57,10 +59,11 @@ Target "Help" <| fun _ ->
5759
let isPublishOnly = getBuildParam "publishonly"
5860

5961
"Build" ==> "PackNuget" =?> ("PublishNuget", isPublishOnly = "")
60-
"Build" ==> "PackUnity"
62+
"Build" ==> "PackUnity" =?> ("PublishUnity", isPublishOnly = "")
6163
"PackNuget" ==> "Pack"
6264
"PackUnity" ==> "Pack"
6365
"PublishNuget" ==> "Publish"
66+
"PublishUnity" ==> "Publish"
6467

6568
"Test" ==> "CI"
6669
"Cover" ==> "CI"

0 commit comments

Comments
 (0)