-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workflow: add scripts to sync translations with Crowdin
- Loading branch information
1 parent
3cc0a35
commit 6c6dd30
Showing
3 changed files
with
111 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Import translations from Crowdin | ||
|
||
on: | ||
schedule: | ||
- cron: "0 0 1,15 * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
submodules: recursive | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: lts/* | ||
|
||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.2' | ||
bundler-cache: true | ||
|
||
- name: Setup Crowdin CLI | ||
run: | | ||
npm i -g @crowdin/cli | ||
- name: Install dependencies | ||
run: | | ||
cd docs | ||
bundle install | ||
- name: Pull from Crowdin | ||
env: | ||
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }} | ||
DS_HOMEBREW_WIKI_CROWDIN_ID: ${{ secrets.DS_HOMEBREW_WIKI_CROWDIN_ID }} | ||
run: | | ||
./crowdin-pull.sh | ||
- name: Build test | ||
run: | | ||
cd docs | ||
bundle exec jekyll build | ||
- name: Commit changes | ||
run: | | ||
git config user.email "[email protected]" | ||
git config user.name "TWLBot" | ||
git checkout master | ||
git commit -a -m "Automatic translation import" | ||
- name: Push changes | ||
uses: ad-m/github-push-action@master | ||
with: | ||
branch: master | ||
github_token: ${{ secrets.TWLBOT_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Upload source files to Crowdin | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
paths: | ||
- 'docs/_data/i18n/en-US.json' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
submodules: recursive | ||
|
||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: '3.2' | ||
bundler-cache: true | ||
|
||
- name: Install dependencies | ||
run: | | ||
cd docs | ||
bundle install | ||
- name: Build test | ||
run: | | ||
cd docs | ||
bundle exec jekyll build | ||
- name: Push to Crowdin | ||
uses: crowdin/github-action@v2 | ||
with: | ||
upload_sources: true | ||
env: | ||
CROWDIN_TOKEN: ${{ secrets.CROWDIN_TOKEN }} | ||
DS_HOMEBREW_WIKI_CROWDIN_ID: ${{ secrets.DS_HOMEBREW_WIKI_CROWDIN_ID }} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/bash | ||
|
||
# Add new languages here, space separated and using the ID for `crowdin pull` | ||
LANGUAGES="da de es-ES fr he hu in-context id it ja ko nl no pl pt-PT pt-BR ro ru sv-SE tr uk zh-CN" | ||
|
||
ARG='' | ||
for LANGUAGE in $LANGUAGES; do | ||
ARG+="-l $LANGUAGE " | ||
done | ||
crowdin pull $ARG |