Skip to content

Commit

Permalink
Fix workflow file name.
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianStehle committed Oct 22, 2021
1 parent 6a24325 commit a62291e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ await current.Items.OrderBy(x => x.Name).Foreach(async (workflow, i) =>

await log.DoSafeAsync($"Exporting '{workflowName}' ({workflow.Id})", async () =>
{
await sync.WriteWithSchemaAs<UpdateWorkflowDto>(new FilePath($"workflows", "workflow{i}.json"), workflow, Ref);
await sync.WriteWithSchemaAs<UpdateWorkflowDto>(new FilePath($"workflows", $"workflow{i}.json"), workflow, Ref);
});
});
}
Expand Down
2 changes: 1 addition & 1 deletion cli/Squidex.CLI/Squidex.CLI/Squidex.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<TargetFramework>net5.0</TargetFramework>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<ToolCommandName>sq</ToolCommandName>
<Version>7.19</Version>
<Version>7.20</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="Commands\Implementation\OpenLibrary\Structure\schemas\author.json" />
Expand Down

0 comments on commit a62291e

Please sign in to comment.