Update language data for Sinitic languages #962
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will push the iD source strings to transifex | |
# - requires TX_TOKEN secret to be set on GitHub | |
# - you can generate a token at https://www.transifex.com/user/settings/api/ | |
# - job does not run if no token provided | |
name: transifex | |
on: | |
push: | |
branches: | |
- develop | |
permissions: | |
contents: read | |
jobs: | |
transifex: | |
runs-on: ubuntu-latest | |
environment: workflows | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Transifex client | |
run: | | |
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash | |
- name: Push source strings to Transifex | |
env: | |
TX_TOKEN: ${{secrets.TX_TOKEN}} | |
if: env.TX_TOKEN != null | |
run: ./tx push --source --use-git-timestamps --skip id-editor.core |