Skip to content

Commit

Permalink
Add update-sources.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed Mar 17, 2024
1 parent 6743766 commit d192470
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/update-sources.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Update sources using crowdin CLI

on:
push:
branches:
- master
workflow_dispatch:

jobs:
cli:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Crowdin CLI
run: npm i -g @crowdin/cli

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install sphinx
run: pip install -U sphinx sphinx-intl

- name: Change directory
run: cd docs

- name: Generate pot files
run: sphinx-build -b gettext . _build/gettext

- name: Update pot files
run: crowdin update sources --no-progress
with:
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}

0 comments on commit d192470

Please sign in to comment.