We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
steps: - try: - description: "" script: ... outputs: - name: result value: (json_parse($stdout).status.result) - try: - description: "use outputs_result to get before step result" apply: bindings: - name: get_from_before_step value: ($outputs_result)
type StepProcessor interface { Run(context.Context, namespacer.Namespacer, engine.Context, engine.Context) **engine.Context** }
func (p *stepProcessor) Run(ctx context.Context, namespacer namespacer.Namespacer, tc engine.Context, testTc engine.Context) engine.Context { ... for k, v := range outputs { tc = tc.WithBinding(ctx, k, v) **testTc = testTc.WithBinding(ctx, "outputs_"+k, v)** } } } return testTc }
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem Statement
Solution Description
Alternatives
No response
Additional Context
No response
Slack discussion
No response
Research
The text was updated successfully, but these errors were encountered: