28 lines
633 B
YAML
28 lines
633 B
YAML
name: Export Source Translations
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
export-source-translations:
|
|
name: Update translations branch
|
|
runs-on: macos-12
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- xcode: "14.2"
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
- name: Run export script
|
|
run: |
|
|
sh devtools/export-source-translation.sh
|
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: Update Translations 🤖
|
|
branch: translations
|
|
create_branch: true
|
|
push_options: '--force'
|