in src/pipeline.ts [202:208]
private renderJobOutputs(outputs: github.JobStepOutput[]) {
const renderedOutputs: Record<string, string> = {};
for (const output of outputs) {
renderedOutputs[output.outputName] = `\${{ steps.${output.stepId}.outputs.${output.outputName} }}`;
}
return renderedOutputs;
}