File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ echo "Checking for tag"
13
13
if [[ -n " ${GIT_TAG} " ]]; then
14
14
echo " Tag ${GIT_TAG} is defined"
15
15
echo " Copy docs to root"
16
- echo " cp -r ${PWD} /doc/build/html/* ${PWD} /"
17
- cp -r " ${PWD} /doc/build/html/* " " ${PWD} "
16
+ echo " cp -r ${PWD} /doc/build/html/. ${PWD} /"
17
+ cp -r " ${PWD} /doc/build/html/. " " ${PWD} / "
18
18
else
19
19
echo " Tag is ${GIT_TAG} . Not updating main documents"
20
20
fi
@@ -25,8 +25,17 @@ ls ${PWD}/doc/build/html
25
25
echo " Copy docs to devel"
26
26
echo " cp -r ${PWD} /doc/build/html/. ${PWD} /devel/"
27
27
cp -r " ${PWD} /doc/build/html/." " ${PWD} /devel/"
28
+ echo " Remove build directory"
29
+ echo " rm -rf ${PWD} /doc/build/"
30
+ rm -rf ${PWD} /doc/build/
28
31
echo " Add devel"
29
32
git add devel/.
33
+ echo " Add new HTML/JS/CSS"
34
+ git add ./\* .html
35
+ git add ./\* .js
36
+ git add ./\* .css
37
+ git add _sources/.
38
+ git add _static/.
30
39
echo " Change remote"
31
40
git remote set-url origin https://bashtage:" ${GH_PAGES_TOKEN} " @github.com/bashtage/linearmodels.git
32
41
echo " Github Actions doc build after commit ${GITHUB_SHA:: 8} "
Original file line number Diff line number Diff line change @@ -144,10 +144,10 @@ class PanelData:
144
144
should be converted to dummy variables
145
145
drop_first : bool
146
146
Flag indicating to drop first dummy category when converting
147
- copy: bool
147
+ copy : bool
148
148
Flag indicating whether to copy the input. Only has an effect when
149
149
x is a DataFrame
150
- cast: bool
150
+ cast : bool
151
151
Flag indicating to case the data to double precision.
152
152
153
153
Notes
You can’t perform that action at this time.
0 commit comments