Skip to content

Add github action to generate pot file and upload to Crowdin #1

Add github action to generate pot file and upload to Crowdin

Add github action to generate pot file and upload to Crowdin #1

Workflow file for this run

name: crowdin upload
on: push [crowdinUpload2]
jobs:
Crowdin upload
runs-on: ubuntu-latest

Check failure on line 6 in .github/workflows/crowdin.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/crowdin.yaml

Invalid workflow file

You have an error in your yaml syntax on line 6
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.sha }}
- uses: actions/setup-python@v4
with:
python-version: 3.11
architecture: x86
- name: generate pot file
run: |
xgettext -o nvda.pot --package-name "nvda" --package-version ${{ github.sha }} --foreign-user --add-comments=Translators:" --keyword=pgettext:1c,2 --keyword=npgettext:1c,2,3 --from-code utf-8 --language=python source/*.pyw source/**.py
- name: Upload to Crowdin
env:
crowdinProjectID: ${{ secrets.crowdinProjectID }}
crowdinAuthToken: ${{ secrets.crowdinAuthToken }}
run: |
py crowdinSync.py uploadSourceFile 2 nvda.pot nvda.pot