Skip to content

Commit

Permalink
updated crowdin and added github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
max-barrera-2148 committed Sep 24, 2024
1 parent 4aad675 commit 0a196a4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/crowdin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Crowdin Sync

on:
push:
branches:
- main # Adjust the branch as needed
- feature/i18n

jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install Crowdin CLI
run: |
curl -s https://api.crowdin.com/downloads/cli/v3/crowdin-cli.zip -o crowdin-cli.zip
unzip crowdin-cli.zip -d crowdin-cli
sudo mv crowdin-cli/crowdin /usr/local/bin/
- name: Crowdin Sync
run: |
crowdin upload sources \
--project-id 683600 \
--token ${{ secrets.CROWDIN_API_TOKEN }} \
--preserve-hierarchy true \
--files 'i18n/en/**/*:/i18n/%two_letters_code%/**/%original_file_name%' \
--files 'docs/**/*:/i18n/%two_letters_code%/docusaurus-plugin-content-docs/current/**/%original_file_name%' \
--files 'changelog/**/*:/i18n/%two_letters_code%/docusaurus-plugin-content-blog-changelog/**/%original_file_name%'
1 change: 0 additions & 1 deletion crowdin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
project_id: 683600
api_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
preserve_hierarchy: true
files:
# JSON translation files
Expand Down

0 comments on commit 0a196a4

Please sign in to comment.