mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 15:20:56 +00:00
d51fe3fb3f
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3.2.1 to 3.3.0.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](84cbf80943...268d8c0ca0
)
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30 lines
908 B
YAML
30 lines
908 B
YAML
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@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.ACTIONS_GITHUB_TOKEN }}
|
|
- uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v2
|
|
with:
|
|
go-version: ^1.18.4
|
|
- run: |
|
|
set -euo pipefail
|
|
git config --global user.name 'Syncthing Release Automation'
|
|
git config --global user.email 'release@syncthing.net'
|
|
bash build.sh translate
|
|
bash build.sh prerelease
|
|
git push
|
|
env:
|
|
TRANSIFEX_USER: ${{ secrets.TRANSIFEX_USER }}
|
|
TRANSIFEX_PASS: ${{ secrets.TRANSIFEX_PASS }}
|