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
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-04-22 13:25:00 +00:00
|
|
|
- name: Get Current Translations
|
2021-04-17 23:42:52 +00:00
|
|
|
run: |
|
|
|
|
git fetch
|
2021-04-21 12:27:25 +00:00
|
|
|
git checkout origin/l10 -- `git ls-tree origin/l10 -r --name-only | grep ".po"`
|
2021-04-17 23:42:52 +00:00
|
|
|
git reset
|
|
|
|
- name: Set up Python 3.7
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: 3.7
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y gettext
|
|
|
|
pip3 install invoke
|
|
|
|
invoke install
|
|
|
|
- name: Make Translations
|
|
|
|
run: |
|
2021-04-21 09:16:05 +00:00
|
|
|
invoke translate
|
2021-04-17 23:42:52 +00:00
|
|
|
- name: stash changes
|
|
|
|
run: |
|
|
|
|
git stash
|
2021-04-22 13:25:00 +00:00
|
|
|
- name: Checkout Translation Branch
|
2021-04-17 23:42:52 +00:00
|
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
with:
|
2021-04-21 12:27:25 +00:00
|
|
|
ref: l10
|
2021-04-17 23:42:52 +00:00
|
|
|
- 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 stash -- .
|
|
|
|
git reset
|
|
|
|
git add "*.po"
|
2021-04-21 12:27:25 +00:00
|
|
|
git commit -m "updated translation base"
|
2021-04-17 23:42:52 +00:00
|
|
|
- name: Push changes
|
|
|
|
uses: ad-m/github-push-action@master
|
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
2021-04-21 12:27:25 +00:00
|
|
|
branch: l10
|