Skip to content

Download translation and build docs #55

Download translation and build docs

Download translation and build docs #55

Workflow file for this run

name: Download translation and build docs
on:
schedule:
- cron: "0 9 * * 1"
workflow_dispatch:
jobs:
merge_job:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
- uses: actions/cache@v3
with:
path: |
${{ github.workspace }}/**/.cache
key: |
${{ runner.os }}-docusaurus-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-docusaurus-${{ hashFiles('**/yarn.lock') }}
- name: Set Git config
run: |
git config --local user.email "[email protected]"
git config --local user.name "Github Actions"
- name: Checkout and pull build
run: |
git fetch
git checkout build
git pull
- name: Install dependencies and build
run: |
cd website
yarn
yarn crowdin:download
yarn build
- name: Commit build
run: |
git add -f ./website/build ./website/.docusaurus ./website/i18n
if git commit -m "add new build";then
git push
else
echo "Nothing to commit"
fi
env:
NODE_OPTIONS: --max-old-space-size=8192
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}