File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,15 @@ jobs:
129
129
run : rsync -az --delete doc/build/html/ docs@${{ secrets.server_ip }}:/usr/share/nginx/pandas/pandas-docs/dev
130
130
if : github.event_name == 'push'
131
131
132
+ - name : Move docs into site directory
133
+ run : mv doc/build/html web/build/docs
134
+ - name : Save website as an artifact
135
+ uses : actions/upload-artifact@v2
136
+ with :
137
+ name : website
138
+ path : web/build
139
+ retention-days : 14
140
+
132
141
data_manager :
133
142
name : Test experimental data manager
134
143
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -629,6 +629,17 @@ the documentation are also built by Travis-CI. These docs are then hosted `here
629
629
<https://pandas.pydata.org/docs/dev/> `__, see also
630
630
the :ref: `Continuous Integration <contributing.ci >` section.
631
631
632
+ Previewing changes
633
+ ------------------
634
+
635
+ Once, the pull request is submitted, GitHub Actions will automatically build the
636
+ documentation. To view the built site:
637
+
638
+ #. Wait for the ``CI / Web and docs `` check to complete.
639
+ #. Click ``Details `` next to it.
640
+ #. From the ``Artifacts `` drop-down, click ``docs `` or ``website `` to download
641
+ the site as a ZIP file.
642
+
632
643
.. _contributing.code :
633
644
634
645
Contributing to the code base
You can’t perform that action at this time.
0 commit comments