File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,11 @@ 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
12
11
13
12
if [[ -n $TAG_NAME ]]; then
14
13
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
14
+ cp -Tr out/master " out/$TAG_NAME "
15
+ ln -sf " $TAG_NAME " out/stable
18
16
fi
19
17
20
18
if [[ $BETA = " true" ]]; then
@@ -28,8 +26,8 @@ cp util/gh-pages/versions.html out/index.html
28
26
echo " Making the versions.json file"
29
27
python3 ./util/versions.py out
30
28
31
- cd out
32
29
# Now let's go have some fun with the cloned repo
30
+ cd out
33
31
git config user.name " GHA CI"
34
32
git config user.email
" [email protected] "
35
33
You can’t perform that action at this time.
0 commit comments