mirror of
https://github.com/house-of-abbey/GarminHomeAssistant.git
synced 2025-04-30 04:32:26 +00:00
Create translate.yml
This commit is contained in:
30
.github/workflows/translate.yml
vendored
Normal file
30
.github/workflows/translate.yml
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
name: Translate
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "resources/strings/strings.xml"
|
||||
|
||||
jobs:
|
||||
translate:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
# Give the default GITHUB_TOKEN write permission to commit and push the
|
||||
# added or changed files to the repository.
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Python
|
||||
uses: actions/setup-python@v4.7.1
|
||||
|
||||
- run: |
|
||||
pip install beautifulsoup4
|
||||
pip install deep-translate
|
||||
pip install xml
|
||||
|
||||
- run: python translate.py
|
||||
|
||||
# Commit all changed files back to the repository
|
||||
- uses: stefanzweifel/git-auto-commit-action@v5
|
Reference in New Issue
Block a user