Skip to content

Improve the CI and the translation in readthedocs #832

Improve the CI and the translation in readthedocs

Improve the CI and the translation in readthedocs #832

Workflow file for this run

name: update-translations
on:
workflow_dispatch:
pull_request:
schedule:
- cron: "0 0 * * *" #runs at 00:00 UTC everyday
jobs:
ubuntu:
runs-on: ubuntu-latest
permissions:
contents: write # for git push; turn all other permissions 'read'
env:
SPHINXINTL_TRANSIFEX_ORGANIZATION_NAME: sphinx-doc
SPHINXINTL_TRANSIFEX_PROJECT_NAME: sphinx-doc
TX_TOKEN: ${{ secrets.TX_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Initialize and update submodule
run: |
git submodule init
git submodule update
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.9
cache: 'pip'
- name: Install graphviz
run: sudo apt-get install graphviz
- name: Install dependencies
run: |
pip install -U pip setuptools
pip install -r ./requirements.txt
- name: Install Transifex CLI
working-directory: /usr/local/bin
run: |
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
tx --version
- name: Update translations
run: sh ./locale/update.sh
- name: After success
run: |
git config --global user.email "sphinx-auto-update"
git config --global user.name "sphinx-auto-update"
git add locale
git add sphinx
git diff-index --cached --quiet HEAD || git commit -m "Update translations by GHA https://github.com/${{ github.repository }}/actions/runs/${{ github.run_number }}"
- name: GitHub Push
if: github.event_name != 'pull_request'
run: git push