22 lines
408 B
YAML
22 lines
408 B
YAML
name: Translations
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
paths:
|
|
- src/translations/en.json
|
|
|
|
jobs:
|
|
upload:
|
|
name: Upload
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the repository
|
|
uses: actions/checkout@v4.2.2
|
|
|
|
- name: Upload Translations
|
|
run: |
|
|
export LOKALISE_TOKEN="${{ secrets.LOKALISE_TOKEN }}"
|
|
./script/translations_upload_base
|