Skip to content

Download translations from Crowdin #505

Download translations from Crowdin

Download translations from Crowdin #505

name: Download translations from Crowdin
on:
schedule:
- cron: '0 21 * * *'
jobs:
crowdin:
runs-on: ubuntu-latest
if: github.repository == 'ruffle-rs/ruffle'
strategy:
max-parallel: 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get install -y itstool gettext appstream
- name: Generate desktop & metainfo sources
working-directory: desktop/packages/linux
run: |
make update
# Crowdin action creates files and directories as root,
# however we need write access to them to apply changes,
# so just create them here instead of relying on Crowdin.
- name: Create locale directories
working-directory: desktop/packages/linux
run: |
mkdir -p locale/rs.ruffle.Ruffle.desktop
mkdir -p locale/rs.ruffle.Ruffle.metainfo.xml
- name: Crowdin download
uses: crowdin/github-action@v2
with:
config: 'crowdin.yml'
upload_sources: false
upload_translations: false
download_translations: true
push_translations: false
create_pull_request: false
env:
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
- name: Apply desktop & metainfo sources
working-directory: desktop/packages/linux
run: |
make apply
- name: Commit
run: |
git config user.name "RuffleBuild"
git config user.email "ruffle@ruffle.rs"
git checkout -b l10n_crowdin_translations
git add -A
git commit -m 'chore: Update translations from Crowdin'
- name: Push
uses: ad-m/github-push-action@master
with:
branch: l10n_crowdin_translations
github_token: ${{ secrets.RUFFLE_BUILD_TOKEN }}
force: true
- name: Create a PR
run: |
prs=$(gh pr list --base master --head l10n_crowdin_translations --limit 1 --json id | jq length)
if [ "$prs" = 1 ]; then echo "PR already exists"; exit 0; fi
pr_url=$(gh pr create \
--title 'chore: Update translations' \
--body 'New Crowdin pull request with translations 🎉' \
--head l10n_crowdin_translations \
--base master)
gh pr edit "$pr_url" --add-label T-chore --add-label A-i18n
env:
# Use a custom token rather than the automatic GITHUB_TOKEN, as the automatic one doesn't allow created PRs to trigger workflows
# By using our own token (and thus own user), workflows will run, and the PR will be able to be merged.
GITHUB_TOKEN: ${{ secrets.RUFFLE_BUILD_TOKEN }}