Skip to content

[732] Adjust crowdin installation command #5

[732] Adjust crowdin installation command

[732] Adjust crowdin installation command #5

Workflow file for this run

name: Update Crowdin
on:
push:
branches: [ develop, task/732-migrate-to-gh-actions-crowdin-action ] # remove later, hoping it will let me test on branch
workflow_dispatch:
inputs:
test:
description: Just to force the manual trigger
required: false
default: 'trigger'
jobs:
synchronize-with-crowdin:
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Crowdin CLI
run: brew install crowdin
shell: sh
- name: Upload Sources
run: >
crowdin upload sources
--dry-run
shell: sh
env:
GITHUB_TOKEN: ${{ secrets.CROWDIN_GITHUB_TOKEN }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}