Skip to content

Commit b2fbe84

Browse files
committed
DOC: Ensure cheatsheets directory exists
1 parent 9c6a307 commit b2fbe84

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,9 @@ jobs:
148148
run: mv doc/build/html web/build/docs
149149

150150
- name: Copy cheatsheets into site directory
151-
run: cp doc/cheatsheet/Pandas_Cheat_Sheet* web/build/docs/cheatsheet
151+
run: |
152+
mkdir -p web/build/docs/cheatsheets
153+
cp doc/cheatsheet/Pandas_Cheat_Sheet* web/build/docs/cheatsheets
152154
153155
- name: Save website as an artifact
154156
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)