ci: Split out non-release CI jobs into separate workflows. (#7001)

This commit is contained in:
Steveice10 2023-09-22 09:15:47 -07:00 committed by GitHub
parent 003a4ec09b
commit 270d3eb7eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 43 additions and 27 deletions

20
.github/workflows/transifex.yml vendored Normal file
View file

@ -0,0 +1,20 @@
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:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Update Translation
run: ./.ci/transifex.sh
env:
TX_TOKEN: ${{ secrets.TRANSIFEX_API_TOKEN }}