This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
Merge pull request #288 from MXCzkEVM/pre_main_qa #954
This file contains 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: Translate en.json to de.json | |
on: | |
push: | |
branches: | |
- pre_main_qa | |
paths: | |
- 'assets/flutter_i18n/en.json' | |
workflow_dispatch: | |
jobs: | |
translate: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12.3' # Specify Python version | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -q -U google-generativeai | |
- name: Run translation script | |
working-directory: translations | |
env: | |
GEMINI_API_KEY: ${{ secrets.GEMINIKEY }} | |
run: | | |
python translate.py | |
- name: Commit changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add . | |
git commit -m "Update pre-QA with latest translations" | |
git push | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |