fix files paths
All checks were successful
Build and Test / build-image (push) Successful in 50s

This commit is contained in:
2026-01-01 22:33:48 +03:00
parent 9738a855bb
commit 8ee5a9466e

View File

@@ -14,8 +14,8 @@ if (string.IsNullOrEmpty(workflowViewFile) || !Directory.Exists(projectDirectory
var workflow = JsonSerializer.Deserialize<S8nWorkflow>(File.OpenRead(workflowViewFile), JsonSerializerOptions.Web)!; var workflow = JsonSerializer.Deserialize<S8nWorkflow>(File.OpenRead(workflowViewFile), JsonSerializerOptions.Web)!;
var edgesFile = Path.Combine("/sources", $"{workflow.Name}.Edges.cs"); var edgesFile = Path.Combine(projectDirectory, $"{workflow.Name}.Edges.cs");
var nodesFile = Path.Combine("/sources", $"{workflow.Name}.Nodes.cs"); var nodesFile = Path.Combine(projectDirectory, $"{workflow.Name}.Nodes.cs");
// Linking // Linking
const string templateEdges = """ const string templateEdges = """