Skip to content

Commit

Permalink
fix: remove double evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
KnisterPeter authored and github-actions committed Feb 17, 2023
1 parent 460707c commit a113155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/runner/expression.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (rc *RunContext) NewExpressionEvaluatorWithEnv(ctx context.Context, env map
Outputs: map[string]string{},
}
for k, v := range job.Outputs {
result.Outputs[k] = rc.ExprEval.Interpolate(ctx, v)
result.Outputs[k] = v
}
workflowCallResult[jobName] = &result
}
Expand Down

0 comments on commit a113155

Please sign in to comment.