File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
content/actions/using-workflows Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ jobs:
140140 {% raw %}${{ runner.os }}-build-{% endraw %}
141141 {% raw %}${{ runner.os }}-{% endraw %}
142142
143- - if: {% raw %}${{ steps.cache-npm.outputs.cache-hit == false }}{% endraw %}
143+ - if: {% raw %}${{ steps.cache-npm.outputs.cache-hit == ' false' }}{% endraw %}
144144 name: List the state of node modules
145145 continue-on-error: true
146146 run: npm list
@@ -196,7 +196,7 @@ You can use the output of the `cache` action to do something based on whether a
196196In the example workflow above, there is a step that lists the state of the Node modules if a cache miss occurred:
197197
198198``` yaml
199- - if : {% raw %}${{ steps.cache-npm.outputs.cache-hit == false }}{% endraw %}
199+ - if : {% raw %}${{ steps.cache-npm.outputs.cache-hit == ' false' }}{% endraw %}
200200 name : List the state of node modules
201201 continue-on-error : true
202202 run : npm list
You can’t perform that action at this time.
0 commit comments