mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-12 20:37:22 +00:00
61 lines
1.6 KiB
Bash
61 lines
1.6 KiB
Bash
#!/bin/sh -l
|
|
#
|
|
# Copyright 2021. The KubeVela 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.
|
|
#
|
|
|
|
set -e
|
|
|
|
docs_path="./docs"
|
|
|
|
git clone --single-branch --depth 1 https://github.com/oam-dev/kubevela.io.git git-page
|
|
|
|
echo "sidebars updates"
|
|
cat ${docs_path}/sidebars.js > git-page/sidebars.js
|
|
|
|
echo "docusaurus.config updates"
|
|
cat ${docs_path}/docusaurus.config.js > git-page/docusaurus.config.js
|
|
|
|
echo "index info updates"
|
|
cat ${docs_path}/index.js > git-page/src/pages/index.js
|
|
|
|
echo "clear en docs"
|
|
rm -r git-page/docs/*
|
|
echo "clear zh docs"
|
|
rm -r git-page/i18n/zh/docusaurus-plugin-content-docs/*
|
|
echo "clear resources"
|
|
rm -r git-page/resources/*
|
|
|
|
echo "update resources"
|
|
cp -R ${docs_path}/resources/* git-page/resources/
|
|
|
|
echo "update docs"
|
|
cp -R ${docs_path}/en/* git-page/docs/
|
|
cp -R ${docs_path}/zh-CN/* git-page/i18n/zh/docusaurus-plugin-content-docs/
|
|
|
|
echo "check docs"
|
|
cd git-page
|
|
|
|
echo "install node package"
|
|
yarn add nodejieba
|
|
if [ -e yarn.lock ]; then
|
|
yarn install --frozen-lockfile
|
|
elif [ -e package-lock.json ]; then
|
|
npm ci
|
|
else
|
|
npm i
|
|
fi
|
|
|
|
echo "run build"
|
|
npm run build |