This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2023-09-22 16:15:47 +00:00
|
|
|
name: citra-transifex
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
transifex:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: citraemu/build-environments:linux-fresh
|
|
|
|
if: ${{ github.repository == 'citra-emu/citra' }}
|
|
|
|
steps:
|
2024-02-18 16:23:15 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-09-22 16:15:47 +00:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Update Translation
|
|
|
|
run: ./.ci/transifex.sh
|
|
|
|
env:
|
|
|
|
TX_TOKEN: ${{ secrets.TRANSIFEX_API_TOKEN }}
|