Upload translated strings #1
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: Upload translated strings | |
on: | |
workflow_dispatch: # PLEASE DO NOT MAKE IT AUTOMATED --KTrain | |
jobs: | |
upload-translations: | |
name: Upload translated strings | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Upload translations | |
uses: crowdin/[email protected] | |
with: | |
upload_translations: true | |
upload_language: lol | |
import_eq_suggestions: false | |
download_sources: false | |
download_translations: false | |
env: | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWIN_PROJECT_ID }} | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_TOKEN_THING }} |