Skip to content
This repository was archived by the owner on Nov 19, 2025. It is now read-only.

Commit 2a1295e

Browse files
author
Ilya Egorov
committed
Update sync wf
1 parent b23d0a0 commit 2a1295e

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/sync-crowdin-to-rc.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ jobs:
4444
git checkout -B l10n-release-candidate-${{ matrix.lang }}
4545
4646
- name: Commit and push translations
47-
run: |
47+
run: |
48+
git stash --include-untracked
49+
git pull --rebase origin l10n-release-candidate-${{ matrix.lang }} || true
50+
git stash pop || true
4851
git add i18n/${{ matrix.lang }}
4952
git diff --quiet --cached || ( \
5053
git commit -m "chore: update ${{ matrix.lang }} translations" && \

docusaurus.config.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ const getEnvLangConfig = () => {
2424
label: '简体中文',
2525
path: "zh-CN",
2626
},
27-
ru: {
28-
label: "Русский",
29-
path: "ru",
30-
},
3127
},
3228
};
3329
};

0 commit comments

Comments
 (0)