mirror of
https://github.com/libretro/RetroArch
synced 2025-01-06 10:11:54 +00:00
d69f1e46ab
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39 lines
981 B
YAML
39 lines
981 B
YAML
# Download translations from Crowdin and push to GitHub
|
|
|
|
name: Crowdin Daily Workflow
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *' # every day at midnight
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
sync:
|
|
permissions:
|
|
contents: write # for Git to git push
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Java JDK
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
java-version: 1.8
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v4
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Crowdin Sync
|
|
shell: bash
|
|
env:
|
|
CROWDIN_API_KEY: ${{ secrets.CROWDIN_API_KEY }}
|
|
run: |
|
|
cd intl
|
|
python3 -m pip install requests PyYAML
|
|
python3 crowdin_sync.py "$CROWDIN_API_KEY"
|
|
git config user.name github-actions
|
|
git config user.email github-actions@github.com
|
|
git add .
|
|
git commit -m "Fetch translations from Crowdin"
|
|
git push
|