mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-05 14:27:42 -07:00
Move many third-party components' source codes from the src folder to a new folder called deps_src. The goal is to make the code structure clearer and easier to navigate.
38 lines
884 B
YAML
38 lines
884 B
YAML
name: Update Translation Catalog
|
|
on:
|
|
# schedule:
|
|
# - cron: 0 0 * * 1
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update_translation:
|
|
name: Update translation
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.12'
|
|
|
|
- name: Install gettext
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y gettext
|
|
|
|
- name: Update translation catalog
|
|
run: |
|
|
./scripts/run_gettext.sh --full
|
|
git add localization/i18n/*
|
|
|
|
- name: Commit translation catalog updates
|
|
uses: qoomon/actions--create-commit@v1
|
|
id: commit
|
|
with:
|
|
message: Update translation catalog
|
|
skip-empty: true
|
|
|
|
- name: Push changes
|
|
run: git push
|