feat: Auto-install patched APK with Shizuku after patching completes #180
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 push from GitHub | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - dev | |
| paths: | |
| - app/src/main/res/values/plurals.xml | |
| - app/src/main/res/values/strings.xml | |
| jobs: | |
| push: | |
| name: Push strings | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout dev | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: dev | |
| fetch-depth: 0 | |
| clean: true | |
| - name: Push strings | |
| uses: crowdin/github-action@v2 | |
| with: | |
| config: crowdin.yml | |
| upload_sources: true | |
| env: | |
| CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | |
| CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |