Skip to content

Commit

Permalink
*
Browse files Browse the repository at this point in the history
  • Loading branch information
MakesYT committed Jan 20, 2025
1 parent 65e4938 commit 60a7f29
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class Build : NukeBuild

Target PackDebug => _ => _
.OnlyWhenDynamic(() => FinishedTargets.Contains(CreateRelease))
.DependsOn(CreateRelease)
.After(CreateRelease)
.Executes(() =>
{
var rootDirectory = RootDirectory / "buildTest";
Expand All @@ -179,7 +179,7 @@ class Build : NukeBuild

Target Pack => _ => _
.OnlyWhenDynamic(() => FinishedTargets.Contains(CreateRelease))
.DependsOn(CreateRelease)
.After(CreateRelease)
.Executes(() =>
{
var rootDirectory = RootDirectory / "Publish";
Expand Down Expand Up @@ -225,7 +225,7 @@ class Build : NukeBuild

Target PackSelf => _ => _
.OnlyWhenDynamic(() => FinishedTargets.Contains(CreateRelease))
.DependsOn(CreateRelease)
.After(CreateRelease)
.Executes(() =>
{
var rootDirectory_self = RootDirectory / "Publish_SelfContained";
Expand Down Expand Up @@ -283,7 +283,6 @@ class Build : NukeBuild

});
Target PrepareNative=>_=>_
.OnlyWhenDynamic(() => FinishedTargets.Contains(CreateRelease))
.DependsOn(PreparePackInstallerGithub)
.DependsOn(Pack)
.Executes(() =>
Expand Down Expand Up @@ -338,8 +337,7 @@ class Build : NukeBuild
});
Target PackInstaller => _ => _
.OnlyWhenDynamic(() => FinishedTargets.Contains(CreateRelease))

.DependsOn(CreateRelease)
.After(CreateRelease)
.DependsOn(BuildNativeInstaller)
.Executes((() =>
{
Expand Down

0 comments on commit 60a7f29

Please sign in to comment.