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:
140
140
{% raw %}${{ runner.os }}-build-{% endraw %}
141
141
{% raw %}${{ runner.os }}-{% endraw %}
142
142
143
- - if: {% raw %}${{ steps.cache-npm.outputs.cache-hit == false }}{% endraw %}
143
+ - if: {% raw %}${{ steps.cache-npm.outputs.cache-hit == ' false' }}{% endraw %}
144
144
name: List the state of node modules
145
145
continue-on-error: true
146
146
run: npm list
@@ -196,7 +196,7 @@ You can use the output of the `cache` action to do something based on whether a
196
196
In the example workflow above, there is a step that lists the state of the Node modules if a cache miss occurred:
197
197
198
198
``` yaml
199
- - if : {% raw %}${{ steps.cache-npm.outputs.cache-hit == false }}{% endraw %}
199
+ - if : {% raw %}${{ steps.cache-npm.outputs.cache-hit == ' false' }}{% endraw %}
200
200
name : List the state of node modules
201
201
continue-on-error : true
202
202
run : npm list
You can’t perform that action at this time.
0 commit comments