Skip to content

Commit c695ad1

Browse files
author
yujincat
committed
fix a small bug
1 parent d740847 commit c695ad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Runner.Worker/JobExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ public async Task<List<IStep>> InitializeJob(IExecutionContext jobContext, Pipel
321321

322322
if (message.Variables.TryGetValue("system.workflowFileFullPath", out VariableValue workflowFileFullPath))
323323
{
324-
var usesLogText = $"Uses: {workflowFileFullPath}";
324+
var usesLogText = $"Uses: {workflowFileFullPath.Value}";
325325
var reference = GetWorkflowReference(message.Variables);
326326
context.Output(usesLogText + reference);
327327

0 commit comments

Comments
 (0)