File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
content/actions/how-tos/write-workflows/choose-what-workflows-do Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ redirect_from:
23
23
job1 :
24
24
runs-on : ubuntu-latest
25
25
outputs :
26
- output1 : ${{ steps.step1.outputs.test }}
27
- output2 : ${{ steps.step2.outputs.test }}
26
+ output1 : {% raw %} ${{ steps.step1.outputs.test }}{% endraw % }
27
+ output2 : {% raw %} ${{ steps.step2.outputs.test }}{% endraw % }
28
28
steps :
29
29
- id : step1
30
30
run : echo "test=hello" >> "$GITHUB_OUTPUT"
@@ -52,8 +52,8 @@ redirect_from:
52
52
needs: job1
53
53
steps:
54
54
- env:
55
- OUTPUT1: ${{needs.job1.outputs.output1}}
56
- OUTPUT2: ${{needs.job1.outputs.output2}}
55
+ OUTPUT1: {% raw %} ${{needs.job1.outputs.output1}}{% endraw % }
56
+ OUTPUT2: {% raw %} ${{needs.job1.outputs.output2}}{% endraw % }
57
57
run: echo "$OUTPUT1 $OUTPUT2"
58
58
` ` `
59
59
You can’t perform that action at this time.
0 commit comments