Skip to content

Commit

Permalink
fix: do not download sources attempt 4
Browse files Browse the repository at this point in the history
  • Loading branch information
ElJocho committed Feb 28, 2024
1 parent 83a14d5 commit 571dc00
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/crowdin-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,27 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.11'
- name: Install dependencies
run: |
python3.10 -m pip install pybabel
python3.11 -m pip install pybabel
pybabel extract -F sketch_map_tool/config/babel.cfg -o messages.pot .
- name: Sync GH and Crowdin
uses: crowdin/[email protected]
with:
upload_sources: true
upload_translations: false
download_translations: true
download_sources: false
push_sources: false
localization_branch_name: i18n_crowdin
create_pull_request: true
push_sources: false
pull_request_title: 'New Crowdin Translations'
pull_request_body: 'New Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)'
pull_request_base_branch_name: 'main'
env:
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}
GITHUB_TOKEN: ${{ github.token }}
- name: Remove Source
run: rm messages.pot

0 comments on commit 571dc00

Please sign in to comment.