Oh sheesh I hope this thing won't impldoe and leak all my smartspace … #143
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: Crowdin Upload | |
on: | |
push: | |
branches: | |
- '*-dev' | |
jobs: | |
synchronize-with-crowdin: | |
name: Upload strings to Crowdin | |
if: github.repository_owner == 'LawnchairLauncher' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Upload Strings | |
uses: crowdin/github-action@v2 | |
with: | |
upload_translations: false | |
upload_sources: true | |
download_translations: false | |
localization_branch_name: 14-dev-localization | |
create_pull_request: false | |
base_url: 'https://lawnchair.crowdin.com' | |
env: | |
GITHUB_TOKEN: ${{ secrets.LAWNCHAIR_BOT_TOKEN }} | |
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |