Skip to content

remove label

remove label #13

Workflow file for this run

name: Test deployment
on:
pull_request:
branches:
- main
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/checkout@v3
with:
repository: starrocks/starrocks
fetch-depth: 0
path: ./temp-en
- uses: actions/checkout@v3
with:
repository: starrocks/docs.zh-cn
fetch-depth: 0
path: ./temp-zh
- name: process English 3.1
run: |
cd /home/runner/work/doc/doc/temp-en
git checkout branch-3.1
rm -rf ../versioned_docs/version-3.1
mkdir -p ../versioned_docs/version-3.1
cp -r docs/* ../versioned_docs/version-3.1
- name: process English 3.0
run: |
cd /home/runner/work/doc/doc/temp-en
git checkout branch-3.0
rm -rf ../versioned_docs/version-3.0
mkdir -p ../versioned_docs/version-3.0
cp -r docs/* ../versioned_docs/version-3.0
- name: process Chinese 3.1
run: |
cd /home/runner/work/doc/doc/temp-zh
git checkout 3.1
rm -rf ../i18n/zh/docusaurus-plugin-content-docs/version-3.1/
mkdir -p ../i18n/zh/docusaurus-plugin-content-docs/version-3.1
cp -r * ../i18n/zh/docusaurus-plugin-content-docs/version-3.1/
- name: process Chinese 3.0
run: |
cd /home/runner/work/doc/doc/temp-zh
git checkout 3.0
rm -rf ../i18n/zh/docusaurus-plugin-content-docs/version-3.0/
mkdir -p ../i18n/zh/docusaurus-plugin-content-docs/version-3.0
cp -r * ../i18n/zh/docusaurus-plugin-content-docs/version-3.0/
- name: cleanup before running yarn build
run: |
cd /home/runner/work/doc/doc
rm -rf temp-en
rm -rf temp-zh
find . -type f -name TOC.md | xargs rm
rm i18n/zh/docusaurus-plugin-content-docs/*/README.md
rm versioned_docs/version-*/README.md
find . -type f -name "StarRocks_intro.md" -print0 -exec cp _IGNORE/_StarRocks_intro.mdx "{}" \;
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build website
run: |
export NODE_OPTIONS="--max_old_space_size=8192"
yarn build