Skip to content

Update translation files #87

Update translation files

Update translation files #87

Workflow file for this run

name: Update translation files
on:
workflow_dispatch:
schedule:
- cron: '35 1 * * 0'
jobs:
lupdate:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
with:
submodules: true
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: '6.5'
modules: 'qt5compat'
cache: true
- name: Configure CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: Update translations
run: cmake --build build --target update_translations
- name: Commit translation changes
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: Update translation files
file_pattern: 'i18n/NotepadNext_en.ts'