mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-01-17 20:00:09 +08:00
99996fbe8a
* optimize: 精简未用到的配置项并在特征提取初步引入mps * add cmd argument: --noautoopen * fix: i18n * fix * fix * add genlocale workflow * add unitest * fix * fix * fix * 优化笔记本 * reintroduce Push changes * disable genlocale on non-main branch * 将笔记本checkout改为stable
35 lines
868 B
YAML
35 lines
868 B
YAML
name: genlocale
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
golangci:
|
|
name: genlocale
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out
|
|
uses: actions/checkout@master
|
|
|
|
- name: Run locale generation
|
|
run: |
|
|
python3 extract_locale.py
|
|
cd locale
|
|
python3 locale_diff.py
|
|
|
|
- name: Commit back
|
|
if: ${{ !github.head_ref }}
|
|
continue-on-error: true
|
|
run: |
|
|
git config --local user.name 'github-actions[bot]'
|
|
git config --local user.email '41898282+github-actions[bot]@users.noreply.github.com'
|
|
git add --all
|
|
git commit -m "🎨 同步 locale"
|
|
|
|
- name: Push changes
|
|
if: ${{ !github.head_ref }}
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: main
|