We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97f1439 commit 43c8c70Copy full SHA for 43c8c70
.github/workflows/reuse-workflow.yaml
@@ -24,3 +24,9 @@ jobs:
24
run: echo "firstword=hello" >> $GITHUB_OUTPUT
25
- id: step2
26
run: echo "secondword=world" >> $GITHUB_OUTPUT
27
+
28
+ job3:
29
+ runs-on: ubuntu-latest
30
+ needs: example_job
31
+ steps:
32
+ - run: echo ${{ needs.example_job.outputs.output1 }} ${{ needs.example_job.outputs.output2 }}
0 commit comments