Skip to content

Commit

Permalink
Create translate.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sheenhx authored Sep 23, 2024
1 parent 87e1c7f commit 4962fe0
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/translate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Translate en.json to multi-lang

on:
push:
branches:
- main

jobs:
translate:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@latest

- name: Set up Python
uses: actions/setup-python@latest
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 geneva.json
- 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 }}

0 comments on commit 4962fe0

Please sign in to comment.