Skip to content

Commit c124673

Browse files
authored
Add mkdir step before cp (#799)
1 parent 3bd2209 commit c124673

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/demos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
1717
- name: "Copy demo notebooks to top level demos folder"
18-
run: cp -R examples/use_cases/* demos/ && cp examples/tutorials/00_api_basics.ipynb demos/
18+
run: mkdir demos/ && cp -R examples/use_cases/* demos/ && cp examples/tutorials/00_api_basics.ipynb demos/
1919

2020
- name: "Regex out the NBVAL_SKIP and NBVAL_IGNORE_OUTPUT comments"
2121
run: |

0 commit comments

Comments
 (0)