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
|
|
|
|
2024-02-22 23:49:22 +00:00
|
|
|
env:
|
|
|
|
python_version: 3.9
|
2024-03-21 22:23:22 +00:00
|
|
|
node_version: 18
|
2024-02-22 23:49:22 +00:00
|
|
|
|
2024-03-24 22:11:16 +00:00
|
|
|
permissions:
|
2024-04-02 06:35:01 +00:00
|
|
|
contents: read
|
2024-03-24 22:11:16 +00:00
|
|
|
|
2021-04-17 23:42:52 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2024-04-02 06:35:01 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2021-04-17 23:42:52 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2024-04-21 12:20:13 +00:00
|
|
|
INVENTREE_DB_NAME: "./test_db.sqlite"
|
2021-04-17 23:42:52 +00:00
|
|
|
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
|
2024-03-18 01:53:48 +00:00
|
|
|
INVENTREE_SITE_URL: http://localhost:8000
|
2021-04-17 23:42:52 +00:00
|
|
|
|
|
|
|
steps:
|
2022-05-01 13:21:49 +00:00
|
|
|
- name: Checkout Code
|
2024-05-08 21:04:38 +00:00
|
|
|
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # pin@v4.1.5
|
2024-02-22 23:49:22 +00:00
|
|
|
- name: Environment Setup
|
|
|
|
uses: ./.github/actions/setup
|
2023-07-20 23:00:37 +00:00
|
|
|
with:
|
2024-02-22 23:49:22 +00:00
|
|
|
install: true
|
|
|
|
npm: true
|
|
|
|
apt-dependency: gettext
|
2022-05-01 13:21:49 +00:00
|
|
|
- name: Make Translations
|
2023-07-20 23:00:37 +00:00
|
|
|
run: invoke translate
|
2022-05-01 13:21:49 +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 -b l10_local
|
|
|
|
git add "*.po"
|
|
|
|
git commit -m "updated translation base"
|
|
|
|
- name: Push changes
|
2023-10-24 22:18:53 +00:00
|
|
|
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df # pin@v0.8.0
|
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
|