mirror of
https://github.com/dialect-app/po.git
synced 2025-06-19 04:36:25 +00:00
21 lines
565 B
YAML
21 lines
565 B
YAML
on:
|
|
push:
|
|
branches: [main]
|
|
name: update-cldr-langs
|
|
jobs:
|
|
update-cldr-langs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.10"
|
|
- run: pip install polib
|
|
- run: python gen_cldr_langs.py
|
|
- uses: EndBug/add-and-commit@v9
|
|
with:
|
|
committer_name: GitHub Actions
|
|
committer_email: actions@github.com
|
|
message: "Update languages names translations"
|
|
add: ["cldr-langs/*.po", "cldr-langs/LINGUAS"]
|
|
|