This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
Make plugins only load for apps and not applets (#265) #82
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
name: citra-transifex | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
transifex: | |
runs-on: ubuntu-latest | |
container: pablomk7/build-environments:linux-fresh | |
if: ${{ github.repository == 'citra-emu/citra' }} | |
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 }} |