InvenTree/.github/workflows/translations.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.4 KiB
YAML
Raw Normal View History

2021-04-22 13:25:00 +00:00
name: Update Translation Files
on:
push:
branches:
- master
env:
python_version: 3.9
node_version: 18
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
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
INVENTREE_BACKUP_DIR: ./backup
INVENTREE_SITE_URL: http://localhost:8000
steps:
2022-05-01 13:21:49 +00:00
- name: Checkout Code
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # pin@v4.1.5
- name: Environment Setup
uses: ./.github/actions/setup
with:
install: true
npm: true
apt-dependency: gettext
2022-05-01 13:21:49 +00:00
- name: Make Translations
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