Support Android Backup (#378) #160
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: Update Translation Badges | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
update-translation-badges: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Update Translation Badges | |
run: ./gradlew updateTranslations | |
- name: Commit and Push | |
uses: github-actions-x/commit@v2.9 | |
with: | |
name: Translation Badges Updater | |
commit-message: Update Translation Badges in README.md | |
files: README.md |