Files
suwayomi-material-you-webui/.github/workflows/update_i18n_languages.yml
schroda 41fe42f29b Fix "auto webtoon mode" detection
The detection didn't work properly in case the selected manga was in a different language than English or the current active translation.
In that case it didn't work because the translation for that locale wasn't loaded.

So to ensure that the translation exists for each language, we have to hardcode it.
2026-02-21 22:20:22 +01:00

59 lines
1.4 KiB
YAML

name: update_i18n_languages.yml
on:
push:
branches:
- master
workflow_dispatch:
jobs:
update-i18n:
if: >
github.event_name == 'workflow_dispatch' ||
contains(github.event.head_commit.message, 'Translations update from Hosted Weblate')
runs-on: ubuntu-latest
steps:
- name: Configure Git identity
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Checkout master branch
uses: actions/checkout@v4
with:
ref: master
path: master
fetch-depth: 0
- name: Set up NodeJs
uses: actions/setup-node@v4
with:
node-version-file: './master/package.json'
- name: Cache node_modules
uses: actions/cache@v4
with:
path: |
**/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: |
cd master
yarn ci
- name: Update i18n resources
run: |
cd master
echo "WEBLATE_TOKEN=${{ secrets.MY_SECRET }}" > .env
yarn i18n:gen-resources
yarn manga:gen-type-tags
- name: Push changes
run: |
cd master
git push origin HEAD
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}