2021-04-22 13:25:00 +00:00
|
|
|
name: Update Translation Files
|
2021-04-17 23:42:52 +00:00
|
|
|
|
2021-04-22 13:23:32 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-04-17 23:42:52 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
INVENTREE_DB_NAME: './test_db.sqlite'
|
|
|
|
INVENTREE_DB_ENGINE: django.db.backends.sqlite3
|
|
|
|
INVENTREE_DEBUG: info
|
|
|
|
INVENTREE_MEDIA_ROOT: ./media
|
|
|
|
INVENTREE_STATIC_ROOT: ./static
|
2022-10-16 13:09:31 +00:00
|
|
|
INVENTREE_BACKUP_DIR: ./backup
|
2021-04-17 23:42:52 +00:00
|
|
|
|
|
|
|
steps:
|
2022-05-01 13:21:49 +00:00
|
|
|
- name: Checkout Code
|
2022-10-17 02:46:12 +00:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # pin@v3.1.0
|
2022-05-15 13:49:41 +00:00
|
|
|
- name: Set up Python 3.9
|
2022-10-17 02:46:12 +00:00
|
|
|
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # pin@v4.3.0
|
2022-05-01 13:21:49 +00:00
|
|
|
with:
|
2022-05-15 13:49:41 +00:00
|
|
|
python-version: 3.9
|
2022-05-01 13:21:49 +00:00
|
|
|
- name: Install Dependencies
|
|
|
|
run: |
|
2022-08-14 22:20:03 +00:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y gettext
|
|
|
|
pip3 install invoke
|
|
|
|
invoke install
|
2022-05-01 13:21:49 +00:00
|
|
|
- name: Make Translations
|
|
|
|
run: |
|
|
|
|
invoke translate
|
|
|
|
- name: Commit files
|
|
|
|
run: |
|
|
|
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
|
|
git config --local user.name "github-actions[bot]"
|
|
|
|
git checkout -b l10_local
|
|
|
|
git add "*.po"
|
|
|
|
git commit -m "updated translation base"
|
|
|
|
- name: Push changes
|
2022-10-17 02:46:12 +00:00
|
|
|
uses: ad-m/github-push-action@4dcce6dea3e3c8187237fc86b7dfdc93e5aaae58 # pin@master
|
2022-05-01 13:21:49 +00:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
branch: l10
|
2022-05-01 23:37:33 +00:00
|
|
|
force: true
|