We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cf04fb commit 1793d62Copy full SHA for 1793d62
.github/workflows/plan.yml
@@ -74,6 +74,14 @@ jobs:
74
working-directory: ./terraform
75
run: tofu plan -no-color
76
77
- - run: echo ${{ steps.plan.outputs.stdout }}
78
- - run: echo ${{ steps.plan.outputs.stderr }}
79
- - run: echo ${{ steps.plan.outputs.exitcode }}
+ - name: Output stdout
+ if: always()
+ run: echo ${{ steps.plan.outputs.stdout }}
80
+
81
+ - name: Output stderr
82
83
+ run: echo ${{ steps.plan.outputs.stderr }}
84
85
+ - name: Output exitcode
86
87
+ run: echo ${{ steps.plan.outputs.exitcode }}
0 commit comments