Import translations from Crowdin #3
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
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 }} | |
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 }} |