forked from pipe-cd/pipecd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgen-release-docs.sh
More file actions
executable file
·68 lines (58 loc) · 2.06 KB
/
Copy pathgen-release-docs.sh
File metadata and controls
executable file
·68 lines (58 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env bash
# Copyright 2024 The PipeCD Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# parse params
while [[ -z "$1" ]]
do
echo "Missing docs version..."
exit 1
done
v=$1
VERSION=${v%.*}.x
echo "Prepare version docs ${VERSION}"
CONTENT_DIR=docs/content/en
# Create new $CONTENT_DIR/docs-$VERSION
rm -rf $CONTENT_DIR/docs-$VERSION
cp -rf $CONTENT_DIR/docs-dev $CONTENT_DIR/docs-$VERSION
rm -rf docs/layouts/docs-$VERSION
cp -rf docs/themes/docsy/layouts/docs docs/layouts/docs-$VERSION
cat <<EOT > $CONTENT_DIR/docs-$VERSION/_index.md
---
title: "Welcome to PipeCD"
linkTitle: "Documentation [$VERSION]"
type: docs
---
EOT
# Check whether docs/config.toml file contains route for new version docs /docs-$VERSION/
# If it contained already, skip updating docs/config.toml
grep "/docs-$VERSION/" docs/config.toml > /dev/null
if [ $? -eq 0 ]
then
echo "Version docs has been prepared successfully at $CONTENT_DIR/docs-$VERSION/"
exit 0
fi
# Update docs/config.toml
LINE_NUM=$(($(grep -Fn "# Append the release versions here." docs/config.toml | cut -f1 -d ':')+5))
head -n $LINE_NUM docs/config.toml >> docs/config.toml.tmp
cat <<EOT >> docs/config.toml.tmp
[[params.versions]]
version = "$VERSION"
url = "/docs-$VERSION/"
EOT
tail -n +$LINE_NUM docs/config.toml >> docs/config.toml.tmp
mv docs/config.toml.tmp docs/config.toml
# Update docs/main.go
sed "s/const latestPath.*/const latestPath = \"\/docs-"$VERSION"\/\"/g" docs/main.go > docs/main.go.tmp
mv docs/main.go.tmp docs/main.go
echo "Version docs has been prepared successfully at $CONTENT_DIR/docs-$VERSION/"