12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- name: translation_templates
- on:
- workflow_dispatch:
- jobs:
- update-all-templates:
- runs-on: ubuntu-20.04
- steps:
- - name: Checkout SuperTux repository
- uses: actions/checkout@v4
- with:
- repository: 'SuperTux/supertux'
- fetch-depth: 1
- - name: Update translation templates
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: |
- # Update translation templates:
- chmod +x makepot.sh
- ./makepot.sh
- # Commit
- git status
- git config --global user.email "SuperTux-bot@users.noreply.github.com"
- git config --global user.name "SuperTux Bot"
- git commit -am "Update translation templates" || true
- git push https://git:$GITHUB_TOKEN@github.com/SuperTux/supertux.git master
|