Skip to content

Commit

Permalink
Merge pull request #117 from NoxOrg/v7.1.8
Browse files Browse the repository at this point in the history
- fixed bug in foreach wrt forcelocal
  • Loading branch information
jan-schutte authored Oct 19, 2023
2 parents b60f4b1 + 6f47113 commit f1795f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Nox.Cli/Actions/NoxWorkflowExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ private async Task<bool> ProcessForEachJob(NoxWorkflowContext context, bool forc
break;
}

context.CurrentAction.RunAtServer = !forceLocal;
if (context.CurrentAction.RunAtServer == true && forceLocal) context.CurrentAction.RunAtServer = false;

var taskDescription = $"{context.CurrentAction.Name}".EscapeMarkup();

Expand Down
6 changes: 3 additions & 3 deletions src/Nox.Cli/Nox.Cli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>Copyright (c) Andre Sharpe 2022</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>7.1.7</AssemblyVersion>
<FileVersion>7.1.7.0</FileVersion>
<PackageVersion>7.1.7</PackageVersion>
<AssemblyVersion>7.1.8</AssemblyVersion>
<FileVersion>7.1.8.0</FileVersion>
<PackageVersion>7.1.8</PackageVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/NoxOrg/Nox.Cli</PackageProjectUrl>
<RepositoryUrl>https://github.com/NoxOrg/Nox.Cli.git</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Nox.Cli/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"profiles": {
"Nox.Cli": {
"commandName": "Project",
"commandLineArgs": "test workflow --force-local",
"commandLineArgs": "test workflow",
"workingDirectory": "/home/jan/demo/NoxCliDemoProject",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
Expand Down

0 comments on commit f1795f2

Please sign in to comment.