Removed old FO1 PIP button FRMs from French iface #1113
Workflow file for this run
This file contains hidden or 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: Poify/Unpoify | |
| on: | |
| push: | |
| paths: | |
| - "data/text/**" | |
| pull_request: | |
| paths: | |
| - "data/text/**" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Poify/Unpoify run | |
| if: github.ref == 'refs/heads/master' && github.event_name == 'push' | |
| uses: BGforgeNet/msg2po@master | |
| with: | |
| poify: true | |
| unpoify: true | |
| single_commit: true | |
| - name: Poify/Unpoify test | |
| if: (github.ref != 'refs/heads/master' && github.event_name == 'push') || github.event_name == 'pull_request' | |
| uses: BGforgeNet/msg2po@master | |
| with: | |
| poify: true | |
| unpoify: true | |
| dir2msgstr: true | |
| push: false |