File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ jobs:
137
137
if : ${{github.event_name == 'push' && github.ref == 'refs/heads/master'}}
138
138
139
139
- name : Upload web
140
- run : rsync -az --delete --exclude='pandas-docs' --exclude='docs' --exclude='Pandas_Cheat_Sheet*' web/build/ docs@${{ secrets.server_ip }}:/usr/share/nginx/pandas
140
+ run : rsync -az --delete --exclude='pandas-docs' --exclude='docs' web/build/ docs@${{ secrets.server_ip }}:/usr/share/nginx/pandas
141
141
if : ${{github.event_name == 'push' && github.ref == 'refs/heads/master'}}
142
142
143
143
- name : Upload dev docs
@@ -146,6 +146,10 @@ jobs:
146
146
147
147
- name : Move docs into site directory
148
148
run : mv doc/build/html web/build/docs
149
+
150
+ - name : Copy cheatsheets into site directory
151
+ run : cp doc/cheatsheet/Pandas_Cheat_Sheet* web/build/docs/cheatsheet
152
+
149
153
- name : Save website as an artifact
150
154
uses : actions/upload-artifact@v2
151
155
with :
You can’t perform that action at this time.
0 commit comments