forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,48 @@ | ||
name: Update translate branch | ||
name: Update translation branch | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: ['master'] | ||
|
||
jobs: | ||
add_translation: | ||
update_translation: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
name: 'Update old translation' | ||
|
||
steps: | ||
- name: 'Update Branch' | ||
uses: actions/checkout@v4 | ||
|
||
- name: Create temporary branch | ||
run: | | ||
git branch -f translate_tmp | ||
git checkout translate_tmp | ||
git reset --hard origin/master | ||
- name: Apply existing translation | ||
run: | | ||
git fetch origin translate | ||
git checkout origin/translate -- ./tools/translator/ss220replace.json | ||
./tools/translator/ss220_replacer_linux --prefix=ss220 --root=./../../ --location=./ | ||
- name: 'Push Translation' | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "SS220Manager" | ||
git commit -m "Generate translation file" | ||
git push -u -f origin translate | ||
- name: 'Update Branch' | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Installing Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Installing deps | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r ./tools/translator/requirements.txt | ||
- name: Create temporary branch | ||
run: | | ||
git checkout -b translate_tmp | ||
git reset --hard origin/master | ||
- name: Apply existing translation | ||
run: | | ||
git fetch origin translate | ||
git checkout origin/translate -- ./tools/translator/ss220replace.json | ||
./tools/translator/ss220_replacer_linux --prefix=ss220 --root=./../../ --location=./ | ||
- name: 'Push Translation' | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "SS220Manager" | ||
git commit -m "Generate translation file" | ||
git push -f origin translate_tmp:translate |