File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,12 @@ rm -rf out/master/ || exit 0
8
8
echo " Making the docs for master"
9
9
mkdir out/master/
10
10
cp util/gh-pages/index.html out/master
11
- python3 ./ util/export.py out/master/lints.json
11
+ cp util/gh-pages/lints.json out/master
12
12
13
13
if [[ -n $TAG_NAME ]]; then
14
14
echo " Save the doc for the current tag ($TAG_NAME ) and point stable/ to it"
15
- cp -r out/master " out/$TAG_NAME "
16
- rm -f out/stable
17
- ln -s " $TAG_NAME " out/stable
15
+ cp -Tr out/master " out/$TAG_NAME "
16
+ ln -sf " $TAG_NAME " out/stable
18
17
fi
19
18
20
19
if [[ $BETA = " true" ]]; then
@@ -28,8 +27,8 @@ cp util/gh-pages/versions.html out/index.html
28
27
echo " Making the versions.json file"
29
28
python3 ./util/versions.py out
30
29
31
- cd out
32
30
# Now let's go have some fun with the cloned repo
31
+ cd out
33
32
git config user.name " GHA CI"
34
33
git config user.email
" [email protected] "
35
34
You can’t perform that action at this time.
0 commit comments