Skip to content

fix: Test translations #19

fix: Test translations

fix: Test translations #19

Workflow file for this run

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 }}