From 50d39e4481193ab3a51c2942ac8cfe3f9e427258 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Fri, 17 May 2024 10:59:00 +0100 Subject: [PATCH] Re-added Transifex workflow --- .github/workflows/transifex.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/transifex.yml diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml new file mode 100644 index 000000000..05e4b202b --- /dev/null +++ b/.github/workflows/transifex.yml @@ -0,0 +1,20 @@ +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 }}