Fix canary build links with a rebuilt UI (#860) #26
This file contains hidden or 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 Action | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ master ] | |
| paths: | |
| # Named rather than globbed, to match crowdin.yml. The trigger's matching rules and the | |
| # CLI's are defined independently — notably on whether `*` may match nothing — and a | |
| # trigger that quietly never fires is the worse failure. | |
| - manager/src/main/res/values/strings.xml | |
| - manager/src/main/res/values/strings_logs.xml | |
| - manager/src/main/res/values/strings_store.xml | |
| - daemon/src/main/res/values/strings.xml | |
| jobs: | |
| synchronize-with-crowdin: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: crowdin action | |
| uses: crowdin/github-action@v2 | |
| with: | |
| upload_translations: true | |
| download_translations: false | |
| upload_sources: true | |
| config: 'crowdin.yml' | |
| crowdin_branch_name: master | |
| env: | |
| CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
| CROWDIN_API_TOKEN: ${{ secrets.CROWDIN_API_TOKEN }} |