| 12345678910111213141516171819202122232425262728 |
- name: Update translations and documentation
- on:
- workflow_dispatch:
- schedule:
- - cron: '42 3 * * 1'
- jobs:
- update_transifex_docs:
- runs-on: ubuntu-latest
- name: Update translations and documentation
- steps:
- - uses: actions/checkout@v5
- with:
- fetch-depth: 0
- token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
- - uses: actions/setup-go@v6
- with:
- go-version: stable
- - run: |
- set -euo pipefail
- git config --global user.name 'Syncthing Release Automation'
- git config --global user.email '[email protected]'
- bash build.sh translate
- bash build.sh prerelease
- git push
- env:
- WEBLATE_TOKEN: ${{ secrets.WEBLATE_TOKEN }}
|