59 lines
1.3 KiB
Bash
Executable File
59 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
# Build the docs for these tags (the last tag of old major releases)
|
|
# We build the docs for historical reasons. The branch no longer exists
|
|
# since the release is no longer supported/maintained.
|
|
TAGS=(
|
|
v2.5.18
|
|
)
|
|
|
|
# Build the docs only for these release branches
|
|
BRANCHES=(
|
|
v2.6.x-release
|
|
v2.7.x-release
|
|
# v2.8.x-release
|
|
)
|
|
REMOTE="origin"
|
|
|
|
git fetch --all
|
|
git fetch --tags
|
|
current_branch=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
for tag in "${TAGS[@]}"; do
|
|
|
|
if [ "$tag" != "$current_branch" ]; then
|
|
git fetch "$REMOTE" "$tag"
|
|
fi
|
|
|
|
git checkout "$tag"
|
|
if [ -f docusaurus.config.js ]; then
|
|
version=${tag:1:3}-legacy
|
|
echo "Adding documentation for $version"
|
|
yarn docusaurus docs:version "${version}"
|
|
else
|
|
echo "Warning: branch/tag $(version) does not contain a docusaurus.config.js!"
|
|
fi
|
|
|
|
done
|
|
|
|
for branch in "${BRANCHES[@]}"; do
|
|
|
|
if [ "$branch" != "$current_branch" ]; then
|
|
git fetch "$REMOTE" "$branch":"$branch"
|
|
fi
|
|
|
|
git checkout "$branch"
|
|
if [ -f docusaurus.config.js ]; then
|
|
version=${branch:1:3}
|
|
echo "Adding documentation for $version"
|
|
yarn docusaurus docs:version "${version}"
|
|
else
|
|
echo "Warning: branch $(branch) does not contain a docusaurus.config.js!"
|
|
fi
|
|
|
|
done
|
|
|
|
git checkout "$current_branch"
|