export-translations.yaml (633B)
1 name: Export Source Translations 2 3 on: 4 push: 5 branches: 6 - master 7 8 jobs: 9 export-source-translations: 10 name: Update translations branch 11 runs-on: macos-12 12 strategy: 13 matrix: 14 include: 15 - xcode: "14.2" 16 steps: 17 - name: Checkout repository 18 uses: actions/checkout@v3 19 - name: Run export script 20 run: | 21 sh devtools/export-source-translation.sh 22 - uses: stefanzweifel/git-auto-commit-action@v4 23 with: 24 commit_message: Update Translations 🤖 25 branch: translations 26 create_branch: true 27 push_options: '--force'