mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
21 lines
457 B
YAML
21 lines
457 B
YAML
name: lime-transifex
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
transifex:
|
|
runs-on: ubuntu-latest
|
|
container: opensauce04/lime3ds-build:latest
|
|
if: ${{ github.repository == 'Lime3DS/Lime3DS' }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
fetch-depth: 0
|
|
- name: Update translation
|
|
run: ./.ci/transifex.sh
|
|
env:
|
|
TX_TOKEN: ${{ secrets.TRANSIFEX_API_TOKEN }}
|