Sync Docs from Ribir #194
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Sync Docs from Ribir" | |
on: | |
# Allow manual triggering | |
# or `Ribir` pushed | |
workflow_dispatch: | |
inputs: | |
branch_ref: | |
description: "Ribir branch ref" | |
required: true | |
type: string | |
permissions: | |
contents: write | |
env: | |
DOCS_DIR: "uninitialized" | |
CHINESE_DOCS_DIR: "uninitialized" | |
jobs: | |
sync_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout website repo | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.RIBIR_RELEASE }} | |
- name: Checkout docs | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.RIBIR_RELEASE }} | |
repository: RibirX/Ribir | |
ref: ${{ inputs.branch_ref }} | |
path: ribir_repo | |
fetch-depth: 0 | |
- name: Envrionment settings for master | |
if: inputs.branch_ref == 'refs/heads/master' | |
run: | | |
echo "DOCS_DIR=docs" >> $GITHUB_ENV | |
echo "CHINESE_DOCS_DIR=i18n/zh/docusaurus-plugin-content-docs/current" >> $GITHUB_ENV | |
- name : Envrionment settings for release | |
if: startsWith(inputs.branch_ref, 'refs/heads/release') | |
run: | | |
npm install | |
version=$(echo '${{ inputs.branch_ref }}' | grep -oP '[0-9]+\.[0-9]+\.x') | |
echo "DOCS_DIR=versioned_docs/version-$version" >> $GITHUB_ENV | |
echo "CHINESE_DOCS_DIR=i18n/zh/docusaurus-plugin-content-docs/version-$version" >> $GITHUB_ENV | |
# create versioned docs if not exist | |
[ ! -d "versioned_docs/version-$version" ] && npm install && npm run docusaurus docs:version $version | |
- name: Move docs to website | |
run: | | |
echo "Replace version" | |
latest_version=$(git -C ribir_repo describe --tags --abbrev=0 | grep -oP '(?<=v)\S*') | |
sed -i "s/@RIBIR_VERSION/$latest_version/g" `grep -rl "@RIBIR_VERSION" ribir_repo/docs` | |
echo "Move docs to website" | |
rm -rf ${{env.DOCS_DIR}} | |
mv ribir_repo/docs/en ${{env.DOCS_DIR}} | |
rm -rf ${{env.CHINESE_DOCS_DIR}} | |
mv ribir_repo/docs/zh ${{env.CHINESE_DOCS_DIR}} | |
rm -rf ribir_repo | |
echo "Fix assets link" | |
ln -sf ../../../../${{env.DOCS_DIR}}/assets ./${{ env.CHINESE_DOCS_DIR}}/assets | |
- name: submit docs | |
run: | | |
if [ $(git status --porcelain | wc -l) -eq 0 ]; then | |
echo "Docs not changed, skip commit and push." | |
exit 0 | |
fi | |
git config --global user.name "RChangelog[bot]" | |
git config --global user.email 155627257+RChangelog[bot]@users.noreply.github.com | |
git add . | |
git commit -m "Sync docs of Ribir@${{ inputs.branch_ref }}" | |
git push | |