Skip to content

Add update-sources.yml #1

Add update-sources.yml

Add update-sources.yml #1

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:

Check failure on line 35 in .github/workflows/update-sources.yml

View workflow run for this annotation

GitHub Actions / Update sources using crowdin CLI

Invalid workflow file

The workflow is not valid. .github/workflows/update-sources.yml (Line: 35, Col: 9): Unexpected value 'with'
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}