settings: fold the frame-time refresh handlers into their row #639
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
| # Upload sources to Crowdin for translation | |
| name: Crowdin Workflow | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'intl/*_us.h' | |
| - 'intl/*_us.json' | |
| permissions: | |
| contents: read | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Java JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 18 | |
| distribution: zulu | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Crowdin Sync | |
| shell: bash | |
| env: | |
| CROWDIN_API_KEY: ${{ secrets.CROWDIN_API_KEY }} | |
| run: | | |
| cd intl | |
| python3 crowdin_sync.py "$CROWDIN_API_KEY" |