Skip to content

Add entry for sdk (#2539) #152

Add entry for sdk (#2539)

Add entry for sdk (#2539) #152

Workflow file for this run

name: Publish Chinese docs via GitHub Pages and upload to server
env:
# Remember to add v before the following version number unless the version is master.
ACTIONTEST: master
on:
workflow_call:
secrets:
ZHSITE_PASSWORD:
required: true
push:
branches:
- master
paths:
- 'docs-2.0-zh/**'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1 # fetch all commits/branches for gitversion
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name : prepare
run: sh ./prepare.sh
- name: Git Config
run: git config user.name ChrisChen2023 && git config user.email chris.chen@vesoft.com
- name: Mike Deploy
run: |
python ./scripts/render_chinese_only.py
git fetch origin gh-pages-zh --depth=1 # fix mike's CI update
mike list
mike deploy ${{ env.ACTIONTEST }} -b gh-pages-zh -p --rebase
# mike set-default ${{ env.ACTIONTEST }} -b gh-pages-zh -p --rebase
- name: show Chinese git branches
run: |
git branch
git checkout .
git checkout gh-pages-zh
- name: Compress
run: |
tar -vczf nebula-docs.tar.gz ${{ env.ACTIONTEST }} versions.json *.html
- name: Transfer
uses: appleboy/scp-action@master
with:
host: 47.99.143.59
username: root
password: ${{ secrets.ZHSITE_PASSWORD }}
port: 404
source: nebula-docs.tar.gz
target: /usr/web/
- name: UnCompress
uses: appleboy/ssh-action@master
with:
host: 47.99.143.59
username: root
password: ${{ secrets.ZHSITE_PASSWORD }}
port: 404
script: |
mkdir -p /usr/web/nebula-docs/
tar -xzf /usr/web/nebula-docs.tar.gz -C /usr/web/nebula-docs/
# mkdir -p /usr/web/nebula-docs/site/pdf/
# cp -f /var/www/ent-docs/${{ env.ACTIONTEST }}/pdf/NebulaGraph-CN.pdf /var/www/ent-docs/site/pdf/NebulaGraph-CN.pdf