Fix one x way joystick rotary step sometimes rotates character2 steps #241
Workflow file for this run
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: Compile UI translations | |
on: | |
push: | |
paths: | |
- '.github/workflows/**' | |
- 'language/**' | |
pull_request: | |
paths: | |
- '.github/workflows/**' | |
- 'language/**' | |
permissions: | |
contents: read | |
jobs: | |
build-language: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Compile message catalogs | |
run: for x in language/*/*.po ; do python scripts/build/msgfmt.py --output-file "`dirname "$x"`/`basename "$x" .po`.mo" "$x" ; done | |
- uses: actions/upload-artifact@master | |
with: | |
name: mame-language-${{ github.sha }} | |
path: language/*/*.mo |