Translated using Weblate (Portuguese) #834
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: Gettext Updates | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| gettext: | |
| name: Gettext | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/elementary/flatpak-platform/runtime:8.2-x86_64 | |
| options: --privileged | |
| steps: | |
| - name: Install git, python3-git and jq | |
| run: | | |
| apt-get update | |
| apt-get install git jq python3-git -y | |
| - name: Clone repository | |
| uses: actions/checkout@v6 | |
| with: | |
| token: ${{ secrets.GIT_USER_TOKEN }} | |
| - name: Configure Git | |
| run: | | |
| git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
| - name: Update Translation Files | |
| uses: elementary/actions/gettext-flatpak@main | |
| with: | |
| manifest-path: 'io.elementary.calendar.yml' | |
| env: | |
| GIT_USER_NAME: "elementaryBot" | |
| GIT_USER_EMAIL: "builds@elementary.io" |