ci.yml 566 B

1234567891011121314151617181920212223
  1. name: yuzu-ci
  2. on:
  3. push:
  4. branches: [ master ]
  5. tags: [ "*" ]
  6. pull_request:
  7. branches: [ master ]
  8. jobs:
  9. transifex:
  10. runs-on: ubuntu-latest
  11. container: yuzuemu/build-environments:linux-transifex
  12. if: ${{ github.repository == 'yuzu-emu/yuzu' && !github.head_ref }}
  13. steps:
  14. - uses: actions/checkout@v3
  15. with:
  16. submodules: recursive
  17. fetch-depth: 0
  18. - name: Update Translation
  19. run: ./.ci/scripts/transifex/docker.sh
  20. env:
  21. TRANSIFEX_API_TOKEN: ${{ secrets.TRANSIFEX_API_TOKEN }}