Commit 4d36776
authored
Explain that a "list" means "of lines" not of YAML
If I try
```
- name: caching
uses: actions/cache@v2
with:
path:
- ~/.cache
key: build-${{ github.ref }}
restore-keys: |
build-
```
I just get an unexplained "Startup Failure": https://github.com/spine-generic/data-multi-subject/actions/runs/742876119. Switching to a YAML multiline string
```
- name: caching
uses: actions/cache@v2
with:
path: |
~/.cache
key: build-${{ github.ref }}
restore-keys: |
build-
```
works: https://github.com/spine-generic/data-multi-subject/actions/runs/7428783821 parent a1c882f commit 4d36776
File tree
1 file changed
+1
-1
lines changed- content/actions/guides
1 file changed
+1
-1
lines changedLines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
62 | | - | |
| 62 | + | |
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
| |||
0 commit comments