Skip to content

Commit

Permalink
Fix PackTask.ShouldRun
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyAkinshin committed Jun 29, 2023
1 parent 73f8fd1 commit b725ac5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build/Program.cs
Expand Up @@ -384,8 +384,7 @@ public class PackTask : FrostingTask<BuildContext>
{
public override bool ShouldRun(BuildContext context)
{
//return context.IsOnAppVeyorAndBdnNightlyCiCd;
return true;
return context.IsOnAppVeyorAndBdnNightlyCiCd || context.IsLocalBuild;
}

public override void Run(BuildContext context)
Expand Down

0 comments on commit b725ac5

Please sign in to comment.