Skip to content

Commit

Permalink
fix: output step related if expression
Browse files Browse the repository at this point in the history
  • Loading branch information
KnisterPeter authored and github-actions committed May 11, 2022
1 parent b133dd0 commit ea14f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/runner/step.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func runStepExecutor(step step, stage stepStage, executor common.Executor) commo
}

if !runStep {
log.Debugf("Skipping step '%s' due to '%s'", stepModel, stepModel.If.Value)
log.Debugf("Skipping step '%s' due to '%s'", stepModel, ifExpression)
rc.StepResults[rc.CurrentStep].Conclusion = model.StepStatusSkipped
rc.StepResults[rc.CurrentStep].Outcome = model.StepStatusSkipped
return nil
Expand Down

0 comments on commit ea14f3d

Please sign in to comment.