Merge pull request #668 from meyerlor/feature/layers-expand-collapse-all #783
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: Transifex 🗺 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - '**.py' | |
| - '**.ui' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == '3liz' | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| architecture: x64 | |
| cache: "pip" | |
| cache-dependency-path: "requirements/packaging.txt" | |
| - name: Install Packaging CI | |
| run: | | |
| sudo apt-get -qq update | |
| sudo apt-get -qq install qttools5-dev-tools pyqt5-dev-tools | |
| pip install --quiet -r requirements/packaging.txt | |
| - name: Push to Transifex | |
| run: qt-transifex -vv push --transifex-token "${{ secrets.TRANSIFEX_TOKEN }}" |