We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25bbac8 commit f192b14Copy full SHA for f192b14
.github/workflows/tests.yml
@@ -105,19 +105,14 @@ jobs:
105
run: |
106
SOME_VAR="value123"
107
ANOTHER_VAR="$(echo 123)"
108
- echo $SOME_VAR
109
- echo $ANOTHER_VAR
+ echo \$SOME_VAR
+ echo \$ANOTHER_VAR
110
echo "____ test2 : fail ___"
111
TMPDIR="$(mktemp -d)"
112
- echo $$TMPDIR ;
113
- echo "____ env ___"
114
- env ;
+ echo \$TMPDIR ;
115
post: |
116
117
118
119
120
-
121
- name: Multiline with line breaks
122
uses: ./
123
with:
0 commit comments