Skip to content

Commit 0221765

Browse files
committed
CI: save site+docs builds as artifacts
1 parent fcd2269 commit 0221765

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,17 @@ jobs:
118118
source activate pandas-dev
119119
doc/make.py --warnings-are-errors | tee sphinx.log ; exit ${PIPESTATUS[0]}
120120
121+
- name: Save website as an artifact
122+
uses: actions/upload-artifact@v2
123+
with:
124+
name: website
125+
path: web/build
126+
- name: Save docs as an artifact
127+
uses: actions/upload-artifact@v2
128+
with:
129+
name: docs
130+
path: doc/build/html
131+
121132
# This can be removed when the ipython directive fails when there are errors,
122133
# including the `tee sphinx.log` in te previous step (https://github.com/ipython/ipython/issues/11547)
123134
- name: Check ipython directive errors

0 commit comments

Comments
 (0)