Translated using Weblate (Finnish) #209
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update translation_info.json | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache | |
uses: actions/cache@v1 | |
env: | |
cache-name: cache-pip | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip | |
restore-keys: | | |
${{ runner.os }}- | |
- name: Install Python | |
uses: actions/setup-python@v2 | |
- name: Install babel | |
run: python -m pip install Babel | |
- name: Update translation info | |
run: python create_translation_info.py | |
- name: Commit updated | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Update translation info | |
commit_author: Dennis Brakhane <[email protected]> |