ci: Add action to push translation source to transifex

This commit is contained in:
Andrew Senetar 2024-02-19 14:17:40 -08:00
parent 253dfd897c
commit 3d866cec9a
Signed by: arsenetar
GPG Key ID: C63300DCE48AB2F1
1 changed files with 26 additions and 0 deletions

26
.github/workflows/tx-push.yml vendored Normal file
View File

@ -0,0 +1,26 @@
# Push translation source to Transifex
name: Transifex Sync
on:
push:
branches:
- master
paths:
- locale/*.pot
env:
TX_VERSION: "1.6.10"
jobs:
push-source:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Transifex Client
run: |
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash -s -- $TX_VERSION
- name: Update & Push Translation Sources
env:
TX_TOKEN: ${{ secrets.TX_TOKEN }}
run: |
./tx push -s --use-git-timestamps